aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/rng/rng.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2015-03-06 02:35:26 +0000
committerlloyd <[email protected]>2015-03-06 02:35:26 +0000
commit0fe700a79a42e61279bf981ab5072a51eb4cd062 (patch)
treeb3131e22698711058ea6ffce881f9ff662a75b57 /src/lib/rng/rng.cpp
parentd68b511cf4235c0a8a2dae7968b9bc8285b0e4c8 (diff)
Typo
Diffstat (limited to 'src/lib/rng/rng.cpp')
-rw-r--r--src/lib/rng/rng.cpp2
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()));