diff options
author | lloyd <[email protected]> | 2010-02-16 23:32:21 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-02-16 23:32:21 +0000 |
commit | 6a2f1e84538afed55f92eb9550f886a51301a84c (patch) | |
tree | 498c3804d684e8f7f4ad0a423c2ba92310679c8f /src/ssl/hello.cpp | |
parent | e30f46ad200bd724caf72ccbf74bc416e1612b47 (diff) |
Remove use of old PKCS8_ and X509_ typedefs
Diffstat (limited to 'src/ssl/hello.cpp')
-rw-r--r-- | src/ssl/hello.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ssl/hello.cpp b/src/ssl/hello.cpp index c3e89c6cf..53f680fba 100644 --- a/src/ssl/hello.cpp +++ b/src/ssl/hello.cpp @@ -174,7 +174,7 @@ Server_Hello::Server_Hello(RandomNumberGenerator& rng, bool have_rsa = false, have_dsa = false; for(u32bit j = 0; j != certs.size(); j++) { - X509_PublicKey* key = certs[j].subject_public_key(); + Public_Key* key = certs[j].subject_public_key(); if(key->algo_name() == "RSA") have_rsa = true; if(key->algo_name() == "DSA") have_dsa = true; } |