def decrypt_gcm(content, aes_key, iv): aesgcm = AESGCM(aes_key) return aesgcm.decrypt(iv, content, None)