veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
hashers.hpp
1
// Copyright (c) 2019-2022 Xenios SEZC
2
// https://www.veriblock.org
3
// Distributed under the MIT software license, see the accompanying
4
// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6
#ifndef VERIBLOCK_POP_CPP_HASHERS_HPP
7
#define VERIBLOCK_POP_CPP_HASHERS_HPP
8
9
#include <cstdint>
10
#include <string>
11
#include <vector>
12
14
template
<>
15
struct
std::hash<std::vector<uint8_t>> {
16
size_t
operator()(
const
std::vector<uint8_t>& x)
const
{
17
return
std::hash<std::string>{}(std::string{x.begin(), x.end()});
18
}
19
};
20
21
#endif
// VERIBLOCK_POP_CPP_HASHERS_HPP