diff options
author | MarcoFalke <falke.marco@gmail.com> | 2017-09-02 10:48:02 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2017-09-02 10:48:04 +0200 |
commit | 81f8c0378b2ab5ea0d7b65635cb529bd3c69127c (patch) | |
tree | 04c308d15e28e254fac6a0a7cf4ba839eab24f94 | |
parent | 108222b9c323a05cc9339368f10ddd0859f62b43 (diff) | |
parent | dc334fe7495f882aa245abbfbd8a82f0df4d020a (diff) |
Merge #11216: Update hmac_sha256.h
dc334fe74 Update hmac_sha256.h (Utsav Gupta)
Pull request description:
Fixed a typo
Tree-SHA512: 60c2ca37583274394c3235cad1118e0ddb89d92bc9c9461fbd191e46bb77a94a4ce11be354eb84ac368a5dc58e66f081382e47ea462e5604e6abec11f428c730
-rw-r--r-- | src/crypto/hmac_sha256.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/hmac_sha256.h b/src/crypto/hmac_sha256.h index 1519c1457e..8c42fcfe14 100644 --- a/src/crypto/hmac_sha256.h +++ b/src/crypto/hmac_sha256.h @@ -10,7 +10,7 @@ #include <stdint.h> #include <stdlib.h> -/** A hasher class for HMAC-SHA-512. */ +/** A hasher class for HMAC-SHA-256. */ class CHMAC_SHA256 { private: |