aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-06-30 13:15:30 -0400
committerJack Lloyd <[email protected]>2016-07-17 10:43:40 -0400
commit93922f20f04058ec624f7db3c74d8aa5a3d06440 (patch)
tree81144cfacced43c68c4385683ee0c123a1987042 /src/cli
parent4c5847412d41756aab738a3746666cfaffe5d4af (diff)
Add Stateful_RNG
Handles fork checking for HMAC_RNG and HMAC_DRBG AutoSeeded_RNG change - switch to HMAC_DRBG as default. Start removing the io buffer from entropy poller. Update default RNG poll bits to 256. Fix McEliece test, was using wrong RNG API. Update docs.
Diffstat (limited to 'src/cli')
-rw-r--r--src/cli/speed.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/cli/speed.cpp b/src/cli/speed.cpp
index c6149bf68..1fc0d7343 100644
--- a/src/cli/speed.cpp
+++ b/src/cli/speed.cpp
@@ -427,12 +427,10 @@ class Speed final : public Command
#if defined(BOTAN_HAS_HMAC_DRBG)
for(std::string hash : { "SHA-256", "SHA-384", "SHA-512" })
{
-
- auto hmac = Botan::MessageAuthenticationCode::create("HMAC(" + hash + ")");
- Botan::HMAC_DRBG hmac_drbg(hmac->clone());
+ Botan::HMAC_DRBG hmac_drbg(hash);
bench_rng(hmac_drbg, hmac_drbg.name(), msec, buf_size);
- Botan::HMAC_RNG hmac_rng(hmac->clone(), hmac->clone());
+ Botan::HMAC_RNG hmac_rng(hash);
bench_rng(hmac_rng, hmac_rng.name(), msec, buf_size);
}
#endif