#include <Crypt.au3>
Global $key = "91305D1C12D802F2DFDC946DEF7C1363"
Global $name = "john"
$crypted_name = _Crypt_EncryptData($name, $key, $CALG_AES_256)
MsgBox(0,"Encrypted", $crypted_name)
$real_name = _Crypt_DecryptData($crypted_name, $key, $CALG_AES_256)
MsgBox(0,"Decrypted", $real_name) ; the real name should be "john"
anyone please tell me how to solve this.