Botan 3.8.1
Crypto and TLS for C&
xmss_index_registry.cpp
Go to the documentation of this file.
1/*
2 * XMSS Index Registry
3 * A registry for XMSS private keys, keeps track of the leaf index for
4 * independend copies of the same key.
5 * (C) 2016 Matthias Gierlings
6 *
7 * Botan is released under the Simplified BSD License (see license.txt)
8 **/
9
10#include <botan/internal/xmss_index_registry.h>
11
12#include <botan/assert.h>
13#include <botan/hash.h>
14#include <limits>
15
16namespace Botan {
17
18const std::string XMSS_Index_Registry::m_index_hash_function = "SHA-256";
19
20//static
21uint64_t XMSS_Index_Registry::make_key_id(const secure_vector<uint8_t>& private_seed,
22 const secure_vector<uint8_t>& prf) {
23 std::unique_ptr<HashFunction> hash = HashFunction::create(m_index_hash_function);
24 BOTAN_ASSERT(hash != nullptr, "XMSS_Index_Registry requires SHA-256");
25 hash->update(private_seed);
26 hash->update(prf);
27 secure_vector<uint8_t> result = hash->final();
28 uint64_t key_id = 0;
29 for(size_t i = 0; i < sizeof(key_id); i++) {
30 key_id = ((key_id << 8) | result[i]);
31 }
32
33 return key_id;
34}
35
36std::shared_ptr<Atomic<size_t>> XMSS_Index_Registry::get(const secure_vector<uint8_t>& private_seed,
37 const secure_vector<uint8_t>& prf) {
38 size_t pos = get(make_key_id(private_seed, prf));
39
40 if(pos < std::numeric_limits<size_t>::max()) {
41 return m_leaf_indices[pos];
42 } else {
43 return m_leaf_indices[add(make_key_id(private_seed, prf))];
44 }
45}
46
47size_t XMSS_Index_Registry::get(uint64_t id) const {
48 for(size_t i = 0; i < m_key_ids.size(); i++) {
49 if(m_key_ids[i] == id) {
50 return i;
51 }
52 }
53
54 return std::numeric_limits<size_t>::max();
55}
56
57size_t XMSS_Index_Registry::add(uint64_t id, size_t last_unused) {
59 size_t pos = get(id);
60 if(pos < m_key_ids.size()) {
61 if(last_unused > *(m_leaf_indices[pos])) {
62 m_leaf_indices[pos] = std::make_shared<Atomic<size_t>>(last_unused);
63 }
64 return pos;
65 }
66
67 m_key_ids.push_back(id);
68 m_leaf_indices.push_back(std::make_shared<Atomic<size_t>>(last_unused));
69 return m_key_ids.size() - 1;
70}
71
72} // namespace Botan
#define BOTAN_ASSERT(expr, assertion_made)
Definition assert.h:52
static std::unique_ptr< HashFunction > create(std::string_view algo_spec, std::string_view provider="")
Definition hash.cpp:107
std::shared_ptr< Atomic< size_t > > get(const secure_vector< uint8_t > &private_seed, const secure_vector< uint8_t > &prf)
secure_vector< T > lock(const std::vector< T > &in)
Definition secmem.h:77
std::vector< T, secure_allocator< T > > secure_vector
Definition secmem.h:65
lock_guard< T > lock_guard_type
Definition mutex.h:55