欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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)