blob: afe0e68ee9e32e5cacb206678585d34d7ccff22d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
/*
* TLS Cipher Suite
* (C) 2004-2010,2012 Jack Lloyd
*
* Released under the terms of the Botan license
*/
#include <botan/tls_ciphersuite.h>
#include <botan/parsing.h>
#include <sstream>
#include <stdexcept>
namespace Botan {
namespace TLS {
Ciphersuite Ciphersuite::by_name(const std::string& name)
{
for(size_t i = 0; i != 65536; ++i)
{
Ciphersuite suite = Ciphersuite::by_id(i);
if(!suite.valid())
continue; // not a ciphersuite we know, skip
if(suite.to_string() == name)
return suite;
}
return Ciphersuite(); // some unknown ciphersuite
}
bool Ciphersuite::psk_ciphersuite() const
{
return (kex_algo() == "PSK" ||
kex_algo() == "DHE_PSK" ||
kex_algo() == "ECDHE_PSK");
}
bool Ciphersuite::ecc_ciphersuite() const
{
return (kex_algo() == "ECDH" || sig_algo() == "ECDSA");
}
std::string Ciphersuite::to_string() const
{
if(m_cipher_keylen == 0)
throw std::runtime_error("Ciphersuite::to_string - no value set");
std::ostringstream out;
out << "TLS_";
if(kex_algo() != "RSA")
{
if(kex_algo() == "DH")
out << "DHE";
else if(kex_algo() == "ECDH")
out << "ECDHE";
else
out << kex_algo();
out << '_';
}
if(sig_algo() == "DSA")
out << "DSS_";
else if(sig_algo() != "")
out << sig_algo() << '_';
out << "WITH_";
if(cipher_algo() == "ARC4")
{
out << "RC4_128_";
}
else
{
if(cipher_algo() == "3DES")
out << "3DES_EDE";
else if(cipher_algo() == "Camellia")
out << "CAMELLIA_" << Botan::to_string(8*cipher_keylen());
else
out << replace_char(cipher_algo(), '-', '_');
out << "_CBC_";
}
if(mac_algo() == "SHA-1")
out << "SHA";
else if(mac_algo() == "SHA-256")
out << "SHA256";
else if(mac_algo() == "SHA-384")
out << "SHA384";
else
out << mac_algo();
return out.str();
}
}
}
|