Encrypts input using current CIPHERSTREAM context
Public Declare Function CIPHER_StreamUpdate Lib "diCryptoSys.dll" (ByVal hContext As Long, ByRef lpOutput As Byte, ByRef lpData As Byte, ByVal nDataLen As Long) As Long
nRet = CIPHER_StreamUpdate(hContext, lpOutput(0), abData(0), nDataLen)
long __stdcall CIPHER_StreamUpdate(long hContext, unsigned char *lpOutput, unsigned char *lpData, long nDataLen);
If successful, the return value is zero; otherwise it returns a nonnegative error code.
Only one CIPERSTREAM context can be active at one time in any thread.
See the example in CIPHER_StreamInit
.
CIPHER_StreamInit
CIPHER_StreamFinal