aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/tls_session_key.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tls/tls_session_key.h')
-rw-r--r--src/tls/tls_session_key.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/tls/tls_session_key.h b/src/tls/tls_session_key.h
index a698dfcfc..8ba3d2b72 100644
--- a/src/tls/tls_session_key.h
+++ b/src/tls/tls_session_key.h
@@ -17,7 +17,7 @@ namespace Botan {
/**
* TLS Session Keys
*/
-class SessionKeys
+class Session_Keys
{
public:
SymmetricKey client_cipher_key() const { return c_cipher; }
@@ -31,14 +31,11 @@ class SessionKeys
const SecureVector<byte>& master_secret() const { return master_sec; }
- SessionKeys() {}
+ Session_Keys() {}
- SessionKeys(const TLS_Cipher_Suite& suite,
- Version_Code version,
- const MemoryRegion<byte>& pre_master,
- const MemoryRegion<byte>& client_random,
- const MemoryRegion<byte>& server_random,
- bool resuming = false);
+ Session_Keys(class TLS_Handshake_State* state,
+ const MemoryRegion<byte>& pre_master,
+ bool resuming);
private:
SecureVector<byte> master_sec;