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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
/*
* OID Registry
* (C) 1999-2008,2013 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/oids.h>
#include <botan/mutex.h>
namespace Botan {
namespace OIDS {
namespace {
class OID_Map final
{
public:
void add_oid(const OID& oid, const std::string& str)
{
add_str2oid(oid, str);
add_oid2str(oid, str);
}
void add_str2oid(const OID& oid, const std::string& str)
{
lock_guard_type<mutex_type> lock(m_mutex);
auto i = m_str2oid.find(str);
if(i == m_str2oid.end())
m_str2oid.insert(std::make_pair(str, oid.as_string()));
}
void add_oid2str(const OID& oid, const std::string& str)
{
const std::string oid_str = oid.as_string();
lock_guard_type<mutex_type> lock(m_mutex);
auto i = m_oid2str.find(oid_str);
if(i == m_oid2str.end())
m_oid2str.insert(std::make_pair(oid_str, str));
}
std::string lookup(const OID& oid)
{
const std::string oid_str = oid.as_string();
lock_guard_type<mutex_type> lock(m_mutex);
auto i = m_oid2str.find(oid_str);
if(i != m_oid2str.end())
return i->second;
return "";
}
OID lookup(const std::string& str)
{
lock_guard_type<mutex_type> lock(m_mutex);
auto i = m_str2oid.find(str);
if(i != m_str2oid.end())
return i->second;
return OID();
}
bool have_oid(const std::string& str)
{
lock_guard_type<mutex_type> lock(m_mutex);
return m_str2oid.find(str) != m_str2oid.end();
}
static OID_Map& global_registry()
{
static OID_Map g_map;
return g_map;
}
private:
OID_Map()
{
m_str2oid = load_str2oid_map();
m_oid2str = load_oid2str_map();
}
mutex_type m_mutex;
std::unordered_map<std::string, OID> m_str2oid;
std::unordered_map<std::string, std::string> m_oid2str;
};
}
void add_oid(const OID& oid, const std::string& name)
{
OID_Map::global_registry().add_oid(oid, name);
}
void add_oidstr(const char* oidstr, const char* name)
{
add_oid(OID(oidstr), name);
}
void add_oid2str(const OID& oid, const std::string& name)
{
OID_Map::global_registry().add_oid2str(oid, name);
}
void add_str2oid(const OID& oid, const std::string& name)
{
OID_Map::global_registry().add_str2oid(oid, name);
}
std::string lookup(const OID& oid)
{
return OID_Map::global_registry().lookup(oid);
}
OID lookup(const std::string& name)
{
return OID_Map::global_registry().lookup(name);
}
bool have_oid(const std::string& name)
{
return OID_Map::global_registry().have_oid(name);
}
bool name_of(const OID& oid, const std::string& name)
{
return (oid == lookup(name));
}
}
}
|