diff options
author | lloyd <[email protected]> | 2012-01-28 02:57:30 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-01-28 02:57:30 +0000 |
commit | 6e1544d590826b48aaf44273373a3fe58fa3df7d (patch) | |
tree | 8580b977bc53a19c3ef961f32a4566e48506f861 /src/tls/tls_handshake_state.h | |
parent | 467d07f38e31d5df6d12ae85ef68ba4317b10b68 (diff) |
Support alternate PRF hashes in TLS 1.2. Add support for the SHA-384
ciphersuites.
Diffstat (limited to 'src/tls/tls_handshake_state.h')
-rw-r--r-- | src/tls/tls_handshake_state.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tls/tls_handshake_state.h b/src/tls/tls_handshake_state.h index 93846da52..5be5c3620 100644 --- a/src/tls/tls_handshake_state.h +++ b/src/tls/tls_handshake_state.h @@ -32,6 +32,8 @@ namespace Botan { +class KDF; + namespace TLS { /** @@ -60,6 +62,8 @@ class Handshake_State std::string& sig_algo, bool for_client_auth); + KDF* protocol_specific_prf(); + Protocol_Version version; class Client_Hello* client_hello; |