blob: a39747f9a7c143b0a6edf89c565ce13f75d5a8a5 (
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
|
/*
* KeyUsage
* (C) 1999-2007,2016 Jack Lloyd
* (C) 2016 René Korthaus, Rohde & Schwarz Cybersecurity
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/key_constraint.h>
#include <botan/x509_key.h>
namespace Botan {
std::string key_constraints_to_string(Key_Constraints constraints)
{
std::vector<std::string> str;
if(constraints == NO_CONSTRAINTS)
return "no_constraints";
if(constraints & DIGITAL_SIGNATURE)
str.push_back("digital_signature");
if(constraints & NON_REPUDIATION)
str.push_back("non_repudiation");
if(constraints & KEY_ENCIPHERMENT)
str.push_back("key_encipherment");
if(constraints & DATA_ENCIPHERMENT)
str.push_back("data_encipherment");
if(constraints & KEY_AGREEMENT)
str.push_back("key_agreement");
if(constraints & KEY_CERT_SIGN)
str.push_back("key_cert_sign");
if(constraints & CRL_SIGN)
str.push_back("crl_sign");
if(constraints & ENCIPHER_ONLY)
str.push_back("encipher_only");
if(constraints & DECIPHER_ONLY)
str.push_back("decipher_only");
// Not 0 (checked at start) but nothing matched above!
if(str.empty())
return "other_unknown_constraints";
if(str.size() == 1)
return str[0];
std::string out;
for(size_t i = 0; i < str.size() - 1; ++i)
{
out += str[i];
out += ',';
}
out += str[str.size() - 1];
return out;
}
/*
* Make sure the given key constraints are permitted for the given key type
*/
void verify_cert_constraints_valid_for_key_type(const Public_Key& pub_key,
Key_Constraints constraints)
{
const std::string name = pub_key.algo_name();
size_t permitted = 0;
if(name == "DH" || name == "ECDH")
{
permitted |= KEY_AGREEMENT | ENCIPHER_ONLY | DECIPHER_ONLY;
}
if(name == "RSA" || name == "ElGamal")
{
permitted |= KEY_ENCIPHERMENT | DATA_ENCIPHERMENT;
}
if(name == "RSA" || name == "DSA" || name == "ECDSA" || name == "ECGDSA" || name == "ECKCDSA" || name == "GOST-34.10")
{
permitted |= DIGITAL_SIGNATURE | NON_REPUDIATION | KEY_CERT_SIGN | CRL_SIGN;
}
if((constraints & permitted) != constraints)
{
throw Exception("Invalid " + name + " constraints " + key_constraints_to_string(constraints));
}
}
}
|