diff options
Diffstat (limited to 'src/common/Cryptography/HmacHash.h')
-rw-r--r-- | src/common/Cryptography/HmacHash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Cryptography/HmacHash.h b/src/common/Cryptography/HmacHash.h index 6f049d42255..a8c2eee6f09 100644 --- a/src/common/Cryptography/HmacHash.h +++ b/src/common/Cryptography/HmacHash.h @@ -43,7 +43,7 @@ class TC_COMMON_API HmacHash uint8* GetDigest() { return _digest; } uint32 GetLength() const { return DigestLength; } private: - HMAC_CTX _ctx; + HMAC_CTX* _ctx; uint8 _digest[DigestLength]; }; |