Encrypts a string using the AES-256 encryption algorithm with a provided key.
aes256_encrypt(key, plaintext)
Encrypt the string “HelloWorld” with the key “mysecretkey”
aes256_encrypt("mysecretkey", "HelloWorld"); // returns the encrypted string in Base64 format