AesGcmDecryptParameters interface
Decryption parameters for AES-GCM encryption algorithms.
Properties
| additional |
Optional data that is authenticated but not encrypted. |
| algorithm | The encryption algorithm to use. |
| authentication |
The authentication tag generated during encryption. |
| ciphertext | The ciphertext to decrypt. |
| iv | The initialization vector (or nonce) generated during encryption. |
Property Details
additionalAuthenticatedData
Optional data that is authenticated but not encrypted.
additionalAuthenticatedData?: Uint8Array
Property Value
Uint8Array
algorithm
The encryption algorithm to use.
algorithm: AesGcmEncryptionAlgorithm
Property Value
authenticationTag
The authentication tag generated during encryption.
authenticationTag: Uint8Array
Property Value
Uint8Array
ciphertext
The ciphertext to decrypt.
ciphertext: Uint8Array
Property Value
Uint8Array
iv
The initialization vector (or nonce) generated during encryption.
iv: Uint8Array
Property Value
Uint8Array