Click or drag to resize

AeadUpdate Method

Encrypts or decrypts a chunk of input (in incremental mode)

Namespace: CryptoSysAPI
Assembly: diCrSysAPINet (in diCrSysAPINet.dll) Version: 6.22.2.24248 (6.22.2.0)
Syntax
public byte[] Update(
	byte[] input
)

Parameters

input  Byte
Data to be encrypted or decrypted

Return Value

Byte
Encrypted or decrypted data in array of exactly the same length as input; or an empty array on error
Remarks
This function may be repeated to add data in chunks. The input data is encrypted or decrypted depending on the start mode set by a preceding call to StartEncrypt() or StartDecrypt(), respectively. It must eventually be followed by either FinishEncrypt() or FinishDecrypt(), which must match the start mode.
See Also