Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/EncryptDecryptFile.PS1
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ BEGIN {
# Convert the Passphrase to UTF8 Bytes
$pass_ = [Text.Encoding]::UTF8.GetBytes($Passphrase)
# Convert the Salt to UTF Bytes
$salt = [Text.Encoding]::UTF8.GetBytes($salt)
$salt_ = [Text.Encoding]::UTF8.GetBytes($salt)

# Create the Encryption Key using the passphrase, salt and SHA1 algorithm at 256 bits

Expand Down
Loading