Click or drag to resize

GcmNextDecrypt Method

Carries out the GCM decryption operation using the key set up by an earlier call to Gcm.InitKey.

Namespace: CryptoSysAPI
Assembly: diCrSysAPINet (in diCrSysAPINet.dll) Version: 6.22.2.24248 (6.22.2.0)
Syntax
public byte[] NextDecrypt(
	byte[] input,
	byte[] iv,
	byte[] aad,
	byte[] tag
)

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

Byte
Decrypted plaintext in byte array, or empty array on error
See Also