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/tls_client.cpp | |
parent | e30f46ad200bd724caf72ccbf74bc416e1612b47 (diff) |
Remove use of old PKCS8_ and X509_ typedefs
Diffstat (limited to 'src/ssl/tls_client.cpp')
-rw-r--r-- | src/ssl/tls_client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ssl/tls_client.cpp b/src/ssl/tls_client.cpp index 3cad7ef77..ce33573f5 100644 --- a/src/ssl/tls_client.cpp +++ b/src/ssl/tls_client.cpp @@ -95,7 +95,7 @@ TLS_Client::TLS_Client(RandomNumberGenerator& r, */ TLS_Client::TLS_Client(RandomNumberGenerator& r, Socket& sock, const X509_Certificate& cert, - const PKCS8_PrivateKey& key, const TLS_Policy* pol) : + const Private_Key& key, const TLS_Policy* pol) : rng(r), writer(sock), reader(sock), policy(pol ? pol : new TLS_Policy) { peer_id = sock.peer_id(); @@ -502,7 +502,7 @@ void TLS_Client::process_handshake_msg(Handshake_Type type, if(state->do_client_auth) { - PKCS8_PrivateKey* key_matching_cert = 0; // FIXME + Private_Key* key_matching_cert = 0; // FIXME state->client_verify = new Certificate_Verify(rng, writer, state->hash, key_matching_cert); |