Carries out the GCM decryption operation using the key set up by an earlier call to
Gcm.InitKey.
Namespace: CryptoSysAPIAssembly: diCrSysAPINet (in diCrSysAPINet.dll) Version: 6.22.2.24248 (6.22.2.0)
Syntaxpublic byte[] NextDecrypt(
byte[] input,
byte[] iv,
byte[] aad,
byte[] tag
)
Public Function NextDecrypt (
input As Byte(),
iv As Byte(),
aad As Byte(),
tag As Byte()
) As Byte()
Parameters
- input Byte
- Cipher text input data
- iv Byte
- Initialization vector.
- aad Byte
- Additional authentication data (optional). Pass null/Nothing to ignore.
- tag Byte
- Tag value (required)
Return Value
ByteDecrypted plaintext in byte array, or empty array on error
See Also