CryptoSys API Library Manual
CipherStream.Update Method
Encrypts input using current context
Syntax
[C#]
public byte[] Update(
byte[] input
)
[VB.NET]
Public Function Update ( _
input As Byte() _
) As Byte()
Parameters
- input
- Input data to be encrypted
Return Value
Encrypted data in array of exactly the same length as input; or an empty array on error
Remarks
Check CipherStream.ErrCode for error details
See Also
VB6/C equivalent: CIPHER_StreamUpdate
[Contents] [Index]