aboutsummaryrefslogtreecommitdiffstats
path: root/src/ssl/tls_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ssl/tls_client.h')
-rw-r--r--src/ssl/tls_client.h24
1 files changed, 16 insertions, 8 deletions
diff --git a/src/ssl/tls_client.h b/src/ssl/tls_client.h
index 27172029c..896decdf9 100644
--- a/src/ssl/tls_client.h
+++ b/src/ssl/tls_client.h
@@ -1,6 +1,6 @@
/**
-* TLS Client
-* (C) 2004-2006 Jack Lloyd
+* TLS Client
+* (C) 2004-2010 Jack Lloyd
*
* Released under the terms of the Botan license
*/
@@ -23,8 +23,8 @@ namespace Botan {
class BOTAN_DLL TLS_Client : public TLS_Connection
{
public:
- u32bit read(byte[], u32bit);
- void write(const byte[], u32bit);
+ u32bit read(byte buf[], u32bit buf_len);
+ void write(const byte buf[], u32bit buf_len);
std::vector<X509_Certificate> peer_cert_chain() const;
@@ -32,12 +32,20 @@ class BOTAN_DLL TLS_Client : public TLS_Connection
bool is_closed() const;
TLS_Client(RandomNumberGenerator& rng,
- Socket&, const TLS_Policy* = 0);
+ Socket& peer,
+ const TLS_Policy* policy = 0);
+
+#if 0
+ void add_cert(const X509_Certificate& cert,
+ const Private_Key& cert_key);
+#endif
// FIXME: support multiple cert/key pairs
TLS_Client(RandomNumberGenerator& rng,
- Socket&, const X509_Certificate&, const PKCS8_PrivateKey&,
- const TLS_Policy* = 0);
+ Socket& peer,
+ const X509_Certificate& cert,
+ const Private_Key& cert_key,
+ const TLS_Policy* policy = 0);
~TLS_Client();
private:
@@ -57,7 +65,7 @@ class BOTAN_DLL TLS_Client : public TLS_Connection
const TLS_Policy* policy;
std::vector<X509_Certificate> certs, peer_certs;
- std::vector<PKCS8_PrivateKey*> keys;
+ std::vector<Private_Key*> keys;
Handshake_State* state;
SecureVector<byte> session_id;