aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/tls_suites.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2011-12-23 16:17:29 +0000
committerlloyd <[email protected]>2011-12-23 16:17:29 +0000
commit67c1645ae151f5dd0f2bafce926ff8690fd97f19 (patch)
tree9af9c1c22ab58093328cdfd00dbe42292d8b5ed6 /src/tls/tls_suites.h
parentd363602f95f1514b4b595d9912fba2e503edcb21 (diff)
Rename ssl module to tls
Diffstat (limited to 'src/tls/tls_suites.h')
-rw-r--r--src/tls/tls_suites.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/tls/tls_suites.h b/src/tls/tls_suites.h
new file mode 100644
index 000000000..8d6db0e8b
--- /dev/null
+++ b/src/tls/tls_suites.h
@@ -0,0 +1,42 @@
+/*
+* Cipher Suites
+* (C) 2004-2010 Jack Lloyd
+*
+* Released under the terms of the Botan license
+*/
+
+#ifndef BOTAN_TLS_CIPHERSUITES_H__
+#define BOTAN_TLS_CIPHERSUITES_H__
+
+#include <botan/types.h>
+#include <botan/tls_magic.h>
+#include <string>
+
+namespace Botan {
+
+/**
+* Ciphersuite Information
+*/
+class BOTAN_DLL CipherSuite
+ {
+ public:
+ static TLS_Ciphersuite_Algos lookup_ciphersuite(u16bit suite);
+
+ std::string cipher_algo() const { return cipher; }
+ std::string mac_algo() const { return mac; }
+
+ size_t cipher_keylen() const { return cipher_key_length; }
+
+ TLS_Ciphersuite_Algos kex_type() const { return kex_algo; }
+ TLS_Ciphersuite_Algos sig_type() const { return sig_algo; }
+
+ CipherSuite(u16bit = 0);
+ private:
+ TLS_Ciphersuite_Algos kex_algo, sig_algo;
+ std::string cipher, mac;
+ size_t cipher_key_length;
+ };
+
+}
+
+#endif