aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_pubkey.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/test_pubkey.cpp')
-rw-r--r--src/tests/test_pubkey.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/test_pubkey.cpp b/src/tests/test_pubkey.cpp
index eec7e3bde..9de9a6f9d 100644
--- a/src/tests/test_pubkey.cpp
+++ b/src/tests/test_pubkey.cpp
@@ -21,7 +21,7 @@
#include <botan/x509_key.h>
#include <botan/pkcs8.h>
#include <botan/pubkey.h>
- #include <botan/auto_rng.h>
+
#endif
#if defined(BOTAN_HAS_RSA)
@@ -193,7 +193,7 @@ size_t validate_encryption(PK_Encryptor& e, PK_Decryptor& d,
if(algo.find("/Raw") == std::string::npos)
{
- AutoSeeded_RNG rng;
+ auto& rng = test_rng();
for(size_t i = 0; i != ctext.size(); ++i)
{
@@ -297,7 +297,7 @@ size_t validate_kas(PK_Key_Agreement& kas, const std::string& algo,
size_t test_pk_keygen()
{
- AutoSeeded_RNG rng;
+ auto& rng = test_rng();
size_t tests = 0;
size_t fails = 0;