diff options
author | lloyd <[email protected]> | 2006-09-06 19:52:59 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-09-06 19:52:59 +0000 |
commit | 34e84e5ba997949120e5c99011dbf4e770db1278 (patch) | |
tree | fbd9fe7f5a0e1e972385d253c5ea1fb998697f98 /checks/pk_bench.cpp | |
parent | 559e2860f0716dc5c40697a08a790d3b7c42ce8e (diff) |
Rename X509_PublicKey and PKCS8_PrivateKey to the new types within the
self-test sources
Diffstat (limited to 'checks/pk_bench.cpp')
-rw-r--r-- | checks/pk_bench.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/pk_bench.cpp b/checks/pk_bench.cpp index bed0cfd7a..e2b6877eb 100644 --- a/checks/pk_bench.cpp +++ b/checks/pk_bench.cpp @@ -436,7 +436,7 @@ void bench_kas(PK_Key_Agreement* kas, const std::string& algo_name, *************************************************/ RSA_PrivateKey* load_rsa_key(const std::string& file) { - PKCS8_PrivateKey* key = PKCS8::load_key(file); + Private_Key* key = PKCS8::load_key(file); RSA_PrivateKey* rsakey = dynamic_cast<RSA_PrivateKey*>(key); |