Encrypts or decrypts a chunk of input (in incremental mode)
Namespace: CryptoSysAPIAssembly: diCrSysAPINet (in diCrSysAPINet.dll) Version: 6.22.2.24248 (6.22.2.0)
Syntaxpublic byte[] Update(
byte[] input
)
Public Function Update (
input As Byte()
) As Byte()
Parameters
- input Byte
- Data to be encrypted or decrypted
Return Value
ByteEncrypted 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