我在PowerShell中重写了一个AutoIt脚本。通过AutoIt可执行文件每天(pw.jpg
)生成共享上的文件:
_Crypt_EncryptFile(pw.txt, pw.jpg, "passphrase", algo)
AutoIt文档参考MSDN,我找到了同名的函数here。密码使用以下方法解密:
_Crypt_DecryptFile(pw.jpg, pw.txt, "passphrase", algo)
算法为$CALG_AES_256
(映射到0x00006610
)。如何使用PowerShell解密它?我能找到的任何东西都假定只使用相同的PowerShell函数进行加密和解密。