diff options
author | René Korthaus <[email protected]> | 2017-01-01 14:16:58 +0100 |
---|---|---|
committer | René Korthaus <[email protected]> | 2017-01-01 14:16:58 +0100 |
commit | 87bb54f824f7906e509a6585971d94b2de521e45 (patch) | |
tree | 3020539db8a1e3968ee6b930b49a70903ba59a76 /src/tests | |
parent | 6e4bd1f365a98517397aa11a44006c9ebd934bec (diff) |
Don't use deprecated PK_Signer ctor in tests
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/test_rsa.cpp | 2 |
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; |