blob: a85bc7c9f5cde97036170732d3738720ae66577c (
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
|
/**
* XMSS Index Registry
* A registry for XMSS private keys, keeps track of the leaf index for
* independend copies of the same key.
* (C) 2016 Matthias Gierlings
*
* Botan is released under the Simplified BSD License (see license.txt)
**/
#include <botan/xmss_index_registry.h>
namespace Botan {
const std::string XMSS_Index_Registry::m_index_hash_function = "SHA-256";
uint64_t XMSS_Index_Registry::make_key_id(
const secure_vector<byte>& private_seed,
const secure_vector<byte>& prf) const
{
std::unique_ptr<HashFunction> hash =
HashFunction::create(m_index_hash_function);
BOTAN_ASSERT(hash != nullptr, "XMSS_Index_Registry requires SHA-256");
hash->update(private_seed);
hash->update(prf);
secure_vector<byte> result = hash->final();
uint64_t key_id = 0;
for(size_t i = 0; i < sizeof(key_id); i++)
{
key_id = ((key_id << 8) | result[i]);
}
return key_id;
}
std::shared_ptr<Atomic<size_t>>
XMSS_Index_Registry::get(const secure_vector<byte>& private_seed,
const secure_vector<byte>& prf)
{
size_t pos = get(make_key_id(private_seed, prf));
if(pos < std::numeric_limits<size_t>::max())
{
return m_leaf_indices[pos];
}
else
{
return m_leaf_indices[add(make_key_id(private_seed, prf))];
}
}
size_t XMSS_Index_Registry::get(uint64_t id) const
{
for(size_t i = 0; i < m_key_ids.size(); i++)
{
if(m_key_ids[i] == id)
{
return i;
}
}
return std::numeric_limits<size_t>::max();
}
size_t XMSS_Index_Registry::add(uint64_t id, size_t last_unused)
{
lock_guard_type<mutex_type> lock(m_mutex);
size_t pos = get(id);
if(pos < m_key_ids.size())
{
if(last_unused > *(m_leaf_indices[pos]))
{
m_leaf_indices[pos] = std::make_shared<Atomic<size_t>>(last_unused);
}
return pos;
}
m_key_ids.push_back(id);
m_leaf_indices.push_back(std::make_shared<Atomic<size_t>>(last_unused));
return m_key_ids.size() - 1;
}
}
|