diff options
author | lloyd <[email protected]> | 2014-03-22 14:16:19 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-03-22 14:16:19 +0000 |
commit | 6b043baa4f421e9d00272f3e0d93b7e40cac6b77 (patch) | |
tree | 293d9974f3fd8375e36e5826a44062039a51245e /src/lib/rng/hmac_drbg/hmac_drbg.h | |
parent | ee0698f8046d634dcfe6407227178e40475594b7 (diff) |
Add RFC 6979 nonce generator. Also some HMAC_DRBG cleanups.
Diffstat (limited to 'src/lib/rng/hmac_drbg/hmac_drbg.h')
-rw-r--r-- | src/lib/rng/hmac_drbg/hmac_drbg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/rng/hmac_drbg/hmac_drbg.h b/src/lib/rng/hmac_drbg/hmac_drbg.h index 43729c7fa..c3629aa15 100644 --- a/src/lib/rng/hmac_drbg/hmac_drbg.h +++ b/src/lib/rng/hmac_drbg/hmac_drbg.h @@ -41,7 +41,7 @@ class BOTAN_DLL HMAC_DRBG : public RandomNumberGenerator std::unique_ptr<MessageAuthenticationCode> m_mac; std::unique_ptr<RandomNumberGenerator> m_prng; - secure_vector<byte> m_K, m_V; + secure_vector<byte> m_V; size_t m_reseed_counter; }; |