10 #include <botan/xmss_index_registry.h>
14 const std::string XMSS_Index_Registry::m_index_hash_function =
"SHA-256";
16 uint64_t XMSS_Index_Registry::make_key_id(
17 const secure_vector<uint8_t>& private_seed,
18 const secure_vector<uint8_t>& prf)
const
20 std::unique_ptr<HashFunction>
hash =
22 BOTAN_ASSERT(hash !=
nullptr,
"XMSS_Index_Registry requires SHA-256");
23 hash->update(private_seed);
25 secure_vector<uint8_t> result = hash->final();
27 for(
size_t i = 0; i <
sizeof(key_id); i++)
29 key_id = ((key_id << 8) | result[i]);
35 std::shared_ptr<Atomic<size_t>>
39 size_t pos =
get(make_key_id(private_seed, prf));
43 return m_leaf_indices[pos];
47 return m_leaf_indices[add(make_key_id(private_seed, prf))];
53 for(
size_t i = 0; i < m_key_ids.size(); i++)
55 if(m_key_ids[i] ==
id)
64 size_t XMSS_Index_Registry::add(uint64_t
id,
size_t last_unused)
66 lock_guard_type<mutex_type> lock(m_mutex);
68 if(pos < m_key_ids.size())
70 if(last_unused > *(m_leaf_indices[pos]))
72 m_leaf_indices[pos] = std::make_shared<Atomic<size_t>>(last_unused);
77 m_key_ids.push_back(
id);
78 m_leaf_indices.push_back(std::make_shared<Atomic<size_t>>(last_unused));
79 return m_key_ids.size() - 1;
#define BOTAN_ASSERT(expr, assertion_made)
std::vector< T, secure_allocator< T >> secure_vector
static std::unique_ptr< HashFunction > create(const std::string &algo_spec, const std::string &provider="")
std::shared_ptr< Atomic< size_t > > get(const secure_vector< uint8_t > &private_seed, const secure_vector< uint8_t > &prf)