mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 11:54:20 +02:00
Add comment re threading issues
This commit is contained in:
parent
00d2f9494b
commit
0349847857
1 changed files with 5 additions and 1 deletions
|
@ -30,8 +30,12 @@ public:
|
|||
bool setKey(const QUuid& uidKey);
|
||||
// Calculate complete hash in one.
|
||||
bool calculateHash(HMACHash& hashResult, const char* data, int dataLen);
|
||||
// Append data to be hashed.
|
||||
|
||||
// Append to data to be hashed.
|
||||
bool addData(const char* data, int dataLen);
|
||||
// Get the resulting hash from calls to addData().
|
||||
// Note that only one hash may be calculated at a time for each
|
||||
// HMACAuth instance if this interface is used.
|
||||
HMACHash result();
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in a new issue