Skip to content

Instantly share code, notes, and snippets.

@AsishP
Created October 3, 2018 10:51

Revisions

  1. AsishP revised this gist Oct 3, 2018. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Decrypting Password in Azure Function
    Original file line number Diff line number Diff line change
    @@ -1,3 +1,3 @@
    $userPass = $env:EncryptedPass
    $keyPath = 'D:\home\site\wwwroot\getcredentials\bin\<PasswordFileName>.key'
    $keyPath = 'D:\home\site\wwwroot\<FunctionName>\bin\<PasswordFileName>.key'
    $secPass = $userPass | ConvertTo-SecureString -Key (Get-Content $keyPath)
  2. AsishP created this gist Oct 3, 2018.
    3 changes: 3 additions & 0 deletions Decrypting Password in Azure Function
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,3 @@
    $userPass = $env:EncryptedPass
    $keyPath = 'D:\home\site\wwwroot\getcredentials\bin\<PasswordFileName>.key'
    $secPass = $userPass | ConvertTo-SecureString -Key (Get-Content $keyPath)