aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_rw.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2014-12-28 13:23:40 +0000
committerlloyd <[email protected]>2014-12-28 13:23:40 +0000
commit6322dc69fcf9f3effed4e51de90b3f5b163db47e (patch)
tree6cc5a7b12b5a6648f53b4b22003f9a28b425d1fa /src/tests/test_rw.cpp
parent69d883e83569dd81f02fbbd7dfbdcfc5a3918d49 (diff)
All tests now share an RNG. Uses system RNG if available
Diffstat (limited to 'src/tests/test_rw.cpp')
-rw-r--r--src/tests/test_rw.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/tests/test_rw.cpp b/src/tests/test_rw.cpp
index 09e746add..9db811433 100644
--- a/src/tests/test_rw.cpp
+++ b/src/tests/test_rw.cpp
@@ -6,7 +6,7 @@
#include <fstream>
#if defined(BOTAN_HAS_RW)
- #include <botan/auto_rng.h>
+
#include <botan/pubkey.h>
#include <botan/rw.h>
#endif
@@ -24,7 +24,7 @@ size_t rw_sig_kat(const std::string& e,
const std::string& msg,
const std::string& signature)
{
- AutoSeeded_RNG rng;
+ auto& rng = test_rng();
RW_PrivateKey privkey(rng, BigInt(p), BigInt(q), BigInt(e));
@@ -41,8 +41,6 @@ size_t rw_sig_verify(const std::string& e,
const std::string& msg,
const std::string& signature)
{
- AutoSeeded_RNG rng;
-
BigInt e_bn(e);
BigInt n_bn(n);