This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Create an Encrypted Password ## | |
$AESKey = New-Object Byte[] 32 | |
[Security.Cryptography.RNGCryptoServiceProvider]::Create().GetBytes($AESKey) | |
Set-Content C:\Temp\<PasswordFileName>.key $AESKey | |
## Run the above code first, then upload the above file to the Function App## | |
Function Get-EncryptedPassword | |
{ | |
param ( | |
[Parameter(Mandatory=$true,HelpMessage='Please specify the key file path')][ValidateScript({Test-Path $_})][String]$KeyPath, | |
[Parameter(Mandatory=$true,HelpMessage='Please specify password in clear text')][ValidateNotNullOrEmpty()][String]$Password | |
) | |
$secPw = ConvertTo-SecureString -AsPlainText $Password -Force | |
$AESKey = Get-content $KeyPath | |
$Encryptedpassword = $secPw | ConvertFrom-SecureString -Key $AESKey | |
$Encryptedpassword | |
} | |
Get-EncryptedPassword -KeyPath C:\Temp\<PasswordFileName>.key -Password <Password> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment