-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsupport.cpp
More file actions
168 lines (134 loc) · 4.11 KB
/
support.cpp
File metadata and controls
168 lines (134 loc) · 4.11 KB
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#include <map>
#include "support.hpp"
namespace fluks {
namespace {
std::string blank = "";
struct block_mode_stat {
std::string kern_name;
uint16_t version;
};
struct iv_mode_stat {
std::string kern_name;
uint16_t version;
};
/** Singleton class, constructs mappings for names and properties */
class Lookup {
public:
static Lookup *instance() {
return &_instance;
}
private:
template <class Res, class Map, typename Enum>
Res *stat_lookup(Map &map, Enum type) {
auto i = map.find(type);
if (i == map.end()) return 0;
return &i->second;
}
template <class Map, typename Enum>
Enum enum_lookup(Map &map, Enum def, std::string_view name) {
auto i = map.find(name);
if (i == map.end()) return def;
return i->second;
}
template <class Map, typename Vec>
void types(Map &map, Vec &types) {
for (auto &[type, _] : map)
types.push_back(type);
}
public:
struct block_mode_stat *stat_lookup(block_mode mode) {
return stat_lookup<struct block_mode_stat>(
block_mode_stat_map, mode);
}
struct iv_mode_stat *stat_lookup(iv_mode mode) {
return stat_lookup<struct iv_mode_stat>(
iv_mode_stat_map, mode);
}
block_mode block_mode_lookup(std::string_view name) {
return enum_lookup(block_mode_name_map, block_mode::UNDEFINED,
name);
}
iv_mode iv_mode_lookup(std::string_view name) {
return enum_lookup(iv_mode_name_map, iv_mode::UNDEFINED,
name);
}
void block_mode_types(std::vector<block_mode> &vec) {
types(block_mode_stat_map, vec);
}
void iv_mode_types(std::vector<iv_mode> &vec) {
types(iv_mode_stat_map, vec);
}
private:
std::map<block_mode, struct block_mode_stat> block_mode_stat_map;
std::map<iv_mode, struct iv_mode_stat> iv_mode_stat_map;
std::map<std::string, block_mode, std::less<>> block_mode_name_map;
std::map<std::string, iv_mode, std::less<>> iv_mode_name_map;
Lookup();
Lookup(const Lookup &) {}
void operator=(const Lookup &) {}
static Lookup _instance;
};
Lookup Lookup::_instance;
Lookup::Lookup() {
block_mode_stat_map[block_mode::CBC] = { "cbc", 1 };
block_mode_stat_map[block_mode::CBC_CTS] = { "cts", 1 };
block_mode_stat_map[block_mode::CFB] = { "cfb", 0 };
block_mode_stat_map[block_mode::CTR] = { "ctr", 0 };
block_mode_stat_map[block_mode::ECB] = { "ecb", 1 };
block_mode_stat_map[block_mode::OFB] = { "ofb", 0 };
block_mode_stat_map[block_mode::PCBC] = { "pcbc", 0 };
block_mode_name_map["cbc"] = block_mode::CBC;
block_mode_name_map["cbc-cts"] = block_mode::CBC_CTS;
block_mode_name_map["cts"] = block_mode::CBC_CTS;
block_mode_name_map["cfb"] = block_mode::CFB;
block_mode_name_map["ctr"] = block_mode::CTR;
block_mode_name_map["ecb"] = block_mode::ECB;
block_mode_name_map["ofb"] = block_mode::OFB;
block_mode_name_map["pcbc"] = block_mode::PCBC;
iv_mode_stat_map[iv_mode::ESSIV] = { "essiv", 1 };
iv_mode_stat_map[iv_mode::PLAIN] = { "plain", 1 };
iv_mode_name_map["essiv"] = iv_mode::ESSIV;
iv_mode_name_map["plain"] = iv_mode::PLAIN;
}
} // end anon namespace
}
fluks::block_mode
fluks::block_mode_info::type(std::string_view name) {
return Lookup::instance()->block_mode_lookup(name);
}
std::vector<fluks::block_mode>
fluks::block_mode_info::types() {
std::vector<block_mode> res;
Lookup::instance()->block_mode_types(res);
return res;
}
std::string
fluks::block_mode_info::name(block_mode mode) {
struct block_mode_stat *st = Lookup::instance()->stat_lookup(mode);
return st ? st->kern_name : blank;
}
uint16_t
fluks::block_mode_info::version(block_mode mode) {
struct block_mode_stat *st = Lookup::instance()->stat_lookup(mode);
return st ? st->version : 0;
}
fluks::iv_mode
fluks::iv_mode_info::type(std::string_view name) {
return Lookup::instance()->iv_mode_lookup(name);
}
std::vector<fluks::iv_mode>
fluks::iv_mode_info::types() {
std::vector<iv_mode> res;
Lookup::instance()->iv_mode_types(res);
return res;
}
std::string
fluks::iv_mode_info::name(iv_mode mode) {
struct iv_mode_stat *st = Lookup::instance()->stat_lookup(mode);
return st ? st->kern_name : blank;
}
uint16_t
fluks::iv_mode_info::version(iv_mode mode) {
struct iv_mode_stat *st = Lookup::instance()->stat_lookup(mode);
return st ? st->version : 0;
}