aboutsummaryrefslogtreecommitdiffstats
path: root/src/ssl/tls_suites.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-04-19 23:33:17 +0000
committerlloyd <[email protected]>2010-04-19 23:33:17 +0000
commitcc691a3c2468f7870af3b5d778061806ef3ea557 (patch)
tree69f563f14ac8bf054445b5585186b449ff368330 /src/ssl/tls_suites.h
parent358a943a1772bb491983a3f227bf03dc861dbf76 (diff)
Expose function breaking down ciphersuite to algo values
Diffstat (limited to 'src/ssl/tls_suites.h')
-rw-r--r--src/ssl/tls_suites.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ssl/tls_suites.h b/src/ssl/tls_suites.h
index 837d76422..fa015c28f 100644
--- a/src/ssl/tls_suites.h
+++ b/src/ssl/tls_suites.h
@@ -20,6 +20,8 @@ namespace Botan {
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; }