SecureBlackbox Lite 2020 C++ Edition

Questions / Feedback?

UpdateStream Method

Feeds the contents of a stream to the hash function.

Syntax

ANSI (Cross Platform)
int UpdateStream();

Unicode (Windows)
INT UpdateStream();
- (void)updateStream;
#define MID_HASHFUNCTION_UPDATESTREAM 10

SECUREBLACKBOXLITE_EXTERNAL int SECUREBLACKBOXLITE_CALL SecureBlackboxLite_HashFunction_Do(void *lpObj, int methid, int cparam, void *param[], int cbparam[], int64 *lpllVal);

Remarks

Call this method to pass the contents of a stream to the hash function. You can call this functionrepeatedly and mix it with Update to feed the hash function with many separate chunks of data.

Remember to initialize the hash function with an Reset call before starting hashing the data.Once all the data chunks have been submitted, finalize the hash function and obtain the resulting message digest by calling Finish.

Error Handling (C++)

This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox Lite 2020 C++ Edition - Version 20.0 [Build 8166]