blob: bbefa21143494176da47112f21a32390b4f1b71a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
* TLS Connection
* (C) 2004-2006 Jack Lloyd
*
* Released under the terms of the Botan license
*/
#ifndef BOTAN_TLS_CONNECTION_H__
#define BOTAN_TLS_CONNECTION_H__
#include <botan/x509cert.h>
#include <vector>
namespace Botan {
/**
* TLS Connection
*/
class BOTAN_DLL TLS_Connection
{
public:
virtual size_t read(byte[], size_t) = 0;
virtual void write(const byte[], size_t) = 0;
size_t read(byte& in) { return read(&in, 1); }
void write(byte out) { write(&out, 1); }
virtual std::vector<X509_Certificate> peer_cert_chain() const = 0;
virtual void close() = 0;
virtual ~TLS_Connection() {}
};
}
#endif
|