aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-01-02 15:57:09 -0500
committerJack Lloyd <[email protected]>2017-01-02 15:57:09 -0500
commit28ce8f79e8ef59e04aa8b0b8db781cb9e4c8b1f9 (patch)
tree825ebcf35c604bb7ad720460b08dc9b5c8c3adfc
parent6b1017584dca981d964ad8249fec13d05773d45a (diff)
parent87bb54f824f7906e509a6585971d94b2de521e45 (diff)
Merge GH #789 Avoid deprecated constructor in RSA test
-rw-r--r--src/tests/test_rsa.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_rsa.cpp b/src/tests/test_rsa.cpp
index c0a3d2971..a375e90a3 100644
--- a/src/tests/test_rsa.cpp
+++ b/src/tests/test_rsa.cpp
@@ -150,7 +150,7 @@ class RSA_Blinding_Tests : public Test
Botan::RSA_PrivateKey rsa(Test::rng(), 1024);
- Botan::PK_Signer signer(rsa, "Raw"); // don't try this at home
+ Botan::PK_Signer signer(rsa, Test::rng(), "Raw"); // don't try this at home
Botan::PK_Verifier verifier(rsa, "Raw");
Botan::Null_RNG null_rng;