public AESCipherText(mode as String, transformation as String, keySizeBits as Int, ivBase64 as String, ivHex as String, cipherTextBase64 as String, cipherTextHex as String, tagBase64 as String, tagHex as String):
import klyn.cryptography
payload = AESCipherText("GCM", "aes-256-gcm", 256, "", "", "", "", "", "")
print(payload.mode)