aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/tls_session_key.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tls/tls_session_key.cpp')
-rw-r--r--src/tls/tls_session_key.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/tls/tls_session_key.cpp b/src/tls/tls_session_key.cpp
index cb55499f0..42727273a 100644
--- a/src/tls/tls_session_key.cpp
+++ b/src/tls/tls_session_key.cpp
@@ -13,6 +13,8 @@
namespace Botan {
+namespace TLS {
+
namespace {
std::string lookup_prf_name(Version_Code version)
@@ -32,7 +34,7 @@ std::string lookup_prf_name(Version_Code version)
/**
* Session_Keys Constructor
*/
-Session_Keys::Session_Keys(TLS_Handshake_State* state,
+Session_Keys::Session_Keys(Handshake_State* state,
const MemoryRegion<byte>& pre_master_secret,
bool resuming)
{
@@ -101,3 +103,5 @@ Session_Keys::Session_Keys(TLS_Handshake_State* state,
}
}
+
+}