Automate Password Encryption-Decryption

We designed EncryptDecrypt.exe to encrypt/decrypt password files. This is an executable file and can be used from command line. This is based on symmetric key encryption which means same key will be used for both encryption and decryption. You can download the exe file using this link . How to use : Below is the demonstration using PowerShell terminal. Similarly you can use this in other scripts as per your requirement. Encryption : This will encrypt the plaintext in password file. You need to use -E for encryption. EncryptDecrypt -E PasswordPlainTextFilePath Decryption : You need to use -D for decryption. The password will be printed on terminal. EncryptDecrypt -D PasswordEncryptedFilePath If you want to use the password in your script then store it in a variable and use the variable in your script.