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
|
/*
* STL Utility Functions
* (C) 1999-2007 Jack Lloyd
* (C) 2015 Simon Warta (Kullo GmbH)
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_STL_UTIL_H__
#define BOTAN_STL_UTIL_H__
#include <vector>
#include <string>
#include <map>
#include <set>
#include <botan/secmem.h>
namespace Botan {
inline std::vector<byte> to_byte_vector(const std::string& s)
{
return std::vector<byte>(s.cbegin(), s.cend());
}
inline std::string to_string(const secure_vector<byte> &bytes)
{
return std::string(bytes.cbegin(), bytes.cend());
}
/**
* Return the keys of a map as a std::set
*/
template<typename K, typename V>
std::set<K> map_keys_as_set(const std::map<K, V>& kv)
{
std::set<K> s;
for(auto&& i : kv)
{
s.insert(i.first);
}
return s;
}
/*
* Searching through a std::map
* @param mapping the map to search
* @param key is what to look for
* @param null_result is the value to return if key is not in mapping
* @return mapping[key] or null_result
*/
template<typename K, typename V>
inline V search_map(const std::map<K, V>& mapping,
const K& key,
const V& null_result = V())
{
auto i = mapping.find(key);
if(i == mapping.end())
return null_result;
return i->second;
}
template<typename K, typename V, typename R>
inline R search_map(const std::map<K, V>& mapping, const K& key,
const R& null_result, const R& found_result)
{
auto i = mapping.find(key);
if(i == mapping.end())
return null_result;
return found_result;
}
/*
* Insert a key/value pair into a multimap
*/
template<typename K, typename V>
void multimap_insert(std::multimap<K, V>& multimap,
const K& key, const V& value)
{
#if defined(BOTAN_BUILD_COMPILER_IS_SUN_STUDIO)
// Work around a strange bug in Sun Studio
multimap.insert(std::make_pair<const K, V>(key, value));
#else
multimap.insert(std::make_pair(key, value));
#endif
}
/**
* Existence check for values
*/
template<typename T>
bool value_exists(const std::vector<T>& vec,
const T& val)
{
for(size_t i = 0; i != vec.size(); ++i)
if(vec[i] == val)
return true;
return false;
}
template<typename T, typename Pred>
void map_remove_if(Pred pred, T& assoc)
{
auto i = assoc.begin();
while(i != assoc.end())
{
if(pred(i->first))
assoc.erase(i++);
else
i++;
}
}
}
#endif
|