blob: fd192c9ae87dcce5b242c5f08d822ab2cd60b3c7 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/**
* TLS Handshaking Header File
* (C) 2004-2006 Jack Lloyd
*
* Released under the terms of the Botan license
*/
#ifndef BOTAN_HANDSHAKE_H__
#define BOTAN_HANDSHAKE_H__
#include <botan/tls_messages.h>
#include <botan/secqueue.h>
namespace Botan {
/**
* SSL/TLS Handshake State
*/
class BOTAN_DLL Handshake_State
{
public:
Client_Hello* client_hello;
Server_Hello* server_hello;
Certificate* server_certs;
Server_Key_Exchange* server_kex;
Certificate_Req* cert_req;
Server_Hello_Done* server_hello_done;
Certificate* client_certs;
Client_Key_Exchange* client_kex;
Certificate_Verify* client_verify;
Finished* client_finished;
Finished* server_finished;
X509_PublicKey* kex_pub;
PKCS8_PrivateKey* kex_priv;
CipherSuite suite;
SessionKeys keys;
HandshakeHash hash;
SecureQueue queue;
Version_Code version;
bool got_client_ccs, got_server_ccs, do_client_auth;
Handshake_State();
~Handshake_State();
};
}
#endif
|