diff options
author | lloyd <[email protected]> | 2014-12-28 13:23:40 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-12-28 13:23:40 +0000 |
commit | 6322dc69fcf9f3effed4e51de90b3f5b163db47e (patch) | |
tree | 6cc5a7b12b5a6648f53b4b22003f9a28b425d1fa /src/tests/test_ecdsa.cpp | |
parent | 69d883e83569dd81f02fbbd7dfbdcfc5a3918d49 (diff) |
All tests now share an RNG. Uses system RNG if available
Diffstat (limited to 'src/tests/test_ecdsa.cpp')
-rw-r--r-- | src/tests/test_ecdsa.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/test_ecdsa.cpp b/src/tests/test_ecdsa.cpp index d83ba7a4b..e413d04df 100644 --- a/src/tests/test_ecdsa.cpp +++ b/src/tests/test_ecdsa.cpp @@ -2,7 +2,7 @@ #include "test_pubkey.h" #if defined(BOTAN_HAS_ECDSA) -#include <botan/auto_rng.h> + #include <botan/pubkey.h> #include <botan/ecdsa.h> #include <botan/oids.h> @@ -21,7 +21,7 @@ size_t ecdsa_sig_kat(const std::string& group_id, const std::string& nonce, const std::string& signature) { - AutoSeeded_RNG rng; + auto& rng = test_rng(); EC_Group group(OIDS::lookup(group_id)); ECDSA_PrivateKey ecdsa(rng, group, BigInt(x)); |