Branch data Line data Source code
1 : : // Copyright (c) 2019-present The Bitcoin Core developers
2 : : // Distributed under the MIT software license, see the accompanying
3 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 : :
5 : : #include <crypto/siphash.h>
6 : : #include <random.h>
7 : : #include <span.h>
8 : : #include <util/hasher.h>
9 : :
10 : 8 : SaltedUint256Hasher::SaltedUint256Hasher() :
11 : 8 : k0{FastRandomContext().rand64()},
12 : 8 : k1{FastRandomContext().rand64()} {}
13 : :
14 : 270288 : SaltedTxidHasher::SaltedTxidHasher() :
15 : 270288 : k0{FastRandomContext().rand64()},
16 : 270288 : k1{FastRandomContext().rand64()} {}
17 : :
18 : 59419 : SaltedWtxidHasher::SaltedWtxidHasher() :
19 : 59419 : k0{FastRandomContext().rand64()},
20 : 59419 : k1{FastRandomContext().rand64()} {}
21 : :
22 : 785880 : SaltedOutpointHasher::SaltedOutpointHasher(bool deterministic) :
23 [ - + ]: 785880 : k0{deterministic ? 0x8e819f2607a18de6 : FastRandomContext().rand64()},
24 [ + - ]: 785880 : k1{deterministic ? 0xf4020d2e3983b0eb : FastRandomContext().rand64()}
25 : 785880 : {}
26 : :
27 : 1694 : SaltedSipHasher::SaltedSipHasher() :
28 : 1694 : m_k0{FastRandomContext().rand64()},
29 : 1694 : m_k1{FastRandomContext().rand64()} {}
30 : :
31 : 1631084 : size_t SaltedSipHasher::operator()(const std::span<const unsigned char>& script) const
32 : : {
33 : 1631084 : return CSipHasher(m_k0, m_k1).Write(script).Finalize();
34 : : }
|