aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/tls_suites.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tls/tls_suites.h')
-rw-r--r--src/tls/tls_suites.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/tls/tls_suites.h b/src/tls/tls_suites.h
index 65203bdf7..1fd975beb 100644
--- a/src/tls/tls_suites.h
+++ b/src/tls/tls_suites.h
@@ -14,13 +14,15 @@
namespace Botan {
+namespace TLS {
+
/**
* Ciphersuite Information
*/
-class BOTAN_DLL TLS_Ciphersuite
+class BOTAN_DLL Ciphersuite
{
public:
- static TLS_Ciphersuite lookup_ciphersuite(u16bit suite);
+ static Ciphersuite lookup_ciphersuite(u16bit suite);
const std::string kex_algo() const { return m_kex_algo; }
const std::string sig_algo() const { return m_sig_algo; }
@@ -30,9 +32,9 @@ class BOTAN_DLL TLS_Ciphersuite
size_t cipher_keylen() const { return m_cipher_keylen; }
- TLS_Ciphersuite() : m_cipher_keylen(0) {}
+ Ciphersuite() : m_cipher_keylen(0) {}
- TLS_Ciphersuite(const std::string& sig_algo,
+ Ciphersuite(const std::string& sig_algo,
const std::string& kex_algo,
const std::string& mac_algo,
const std::string& cipher_algo,
@@ -44,4 +46,6 @@ class BOTAN_DLL TLS_Ciphersuite
}
+}
+
#endif