Aes-Decrypt

(aes-decrypt aes-key encrypted-string) -> string

Decrypts the encrypted string using the given aes-key. If the original string was less than 16 bytes in length, the result will include padding.

Examples:

>> (define b (aes-encrypt a "abcdefghijklmnop"))
:: #f
>> (aes-decrypt a b)
:: "abcdefghijklmnop"
>> (define b (aes-encrypt a "abcdefghi"))
:: #f
>>(aes-decrypt a b)
:: "abcdefghi W??d"

See: <aes-key>