From 901e2c505012e2a551bf379d3a4a03df2e24b53f Mon Sep 17 00:00:00 2001 From: Maxime LABELLE Date: Thu, 5 Mar 2026 08:49:15 +0100 Subject: [PATCH] fix script! --- bin/EncryptDecryptFile.PS1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/EncryptDecryptFile.PS1 b/bin/EncryptDecryptFile.PS1 index f5f9977..b66ff7b 100644 --- a/bin/EncryptDecryptFile.PS1 +++ b/bin/EncryptDecryptFile.PS1 @@ -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