public static aesCbcDecrypt(payload as AESCipherText, key as String, keyEncoding as String = "base64") as String throws CryptoException:
import klyn.cryptography
key = AESKeyGenerator().generateKey()
payload = Cipher.aesCbcEncrypt("hello", key)
print(Cipher.aesCbcDecrypt(payload, key))