autoit使用des加密解密
程序员文章站
2024-03-14 13:42:34
...
直接使用crypt包,默认包含的,不用安装,引用即可
#include <Crypt.au3>
Global $key = "this is the test key";
Global $str = "testvalue"
_Crypt_Startup()
$hKey = _Crypt_DeriveKey($key, $CALG_AES_256)
$s = _Crypt_EncryptData($str, $hKey, $CALG_USERKEY)
ConsoleWrite("Encrypted: " & $s & @CRLF)
$str = _Crypt_DecryptData($s, $hKey, $CALG_USERKEY)
ConsoleWrite("Decrypted: " & BinaryToString($str) & @CRLF)
上一篇: Pandas时间序列:频率和日期偏移量
下一篇: java 使用 DES加密解密