aes_gcm_decrypt
On-chain AES-256-GCM decryption
Overview
Signature
def aes_gcm_decrypt(
w3: Web3,
*,
aes_key: Bytes32,
nonce: int | EncryptionNonce,
ciphertext: bytes,
) -> HexBytes
async def async_aes_gcm_decrypt(
w3: AsyncWeb3,
*,
aes_key: Bytes32,
nonce: int | EncryptionNonce,
ciphertext: bytes,
) -> HexBytesParameters
Parameter
Type
Required
Description
Returns
Type
Description
Examples
Basic Usage
Handle Authentication Failure
Async Usage
Gas Cost
Notes
See Also
Last updated

