public static aesGcmEncrypt(plainText as String, key as String, keyEncoding as String = "base64", iv as String = null, ivEncoding as String = "base64", aad as String = null) as AESCipherText throws CryptoException:
import klyn.cryptography
key = AESKeyGenerator().generateKey()
payload = Cipher.aesGcmEncrypt("hello", key)
print(payload.tagBase64)