diff options
author | lloyd <[email protected]> | 2015-03-06 02:35:26 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-03-06 02:35:26 +0000 |
commit | 0fe700a79a42e61279bf981ab5072a51eb4cd062 (patch) | |
tree | b3131e22698711058ea6ffce881f9ff662a75b57 /src/lib/rng/rng.cpp | |
parent | d68b511cf4235c0a8a2dae7968b9bc8285b0e4c8 (diff) |
Typo
Diffstat (limited to 'src/lib/rng/rng.cpp')
-rw-r--r-- | src/lib/rng/rng.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/rng/rng.cpp b/src/lib/rng/rng.cpp index 462d8afa1..76e868b93 100644 --- a/src/lib/rng/rng.cpp +++ b/src/lib/rng/rng.cpp @@ -13,7 +13,7 @@ namespace Botan { RandomNumberGenerator* RandomNumberGenerator::make_rng() { - std::unique_ptr<MessageAuthenticationCode> h1(make_message_auth("HMAC(SHA-512")); + std::unique_ptr<MessageAuthenticationCode> h1(make_message_auth("HMAC(SHA-512)")); std::unique_ptr<MessageAuthenticationCode> h2(h1->clone()); std::unique_ptr<RandomNumberGenerator> rng(new HMAC_RNG(h1.release(), h2.release())); |