Base64-Decode

(base64-decode encoded-string) -> string

Decodes a string previously encoded by base64-encode.

Example:
Continued from the example in base64-encode--

> (base64-encode (aes-encrypt a "abcdefghijklmnop"))
:: "pJPWWxr7zdCZwW7vY9V3OQ=="
>> (base64-decode "cHq7T8tviX1PiBsOzxePXw==")
:: "pz?O?o?}O??_"

In this example, the result would not normally be output to the console, but instead passed to aes-decrypt.