Branch data Line data Source code
1 : : // Copyright (c) 2013-2022 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 <hash.h> 6 : : #include <span.h> 7 : : #include <crypto/common.h> 8 : : #include <crypto/hmac_sha512.h> 9 : : 10 : : #include <string> 11 : : 12 : 333061357 : inline uint32_t ROTL32(uint32_t x, int8_t r) 13 : : { 14 : 333061357 : return (x << r) | (x >> (32 - r)); 15 : : } 16 : : 17 : 20583401 : unsigned int MurmurHash3(unsigned int nHashSeed, Span<const unsigned char> vDataToHash) 18 : : { 19 : : // The following is MurmurHash3 (x86_32), see https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp 20 : 20583401 : uint32_t h1 = nHashSeed; 21 : 20583401 : const uint32_t c1 = 0xcc9e2d51; 22 : 20583401 : const uint32_t c2 = 0x1b873593; 23 : : 24 : 20583401 : const int nblocks = vDataToHash.size() / 4; 25 : : 26 : : //---------- 27 : : // body 28 : 20583401 : const uint8_t* blocks = vDataToHash.data(); 29 : : 30 [ + + ]: 184574130 : for (int i = 0; i < nblocks; ++i) { 31 : 163990729 : uint32_t k1 = ReadLE32(blocks + i*4); 32 : : 33 : 163990729 : k1 *= c1; 34 : 163990729 : k1 = ROTL32(k1, 15); 35 : 163990729 : k1 *= c2; 36 : : 37 : 163990729 : h1 ^= k1; 38 : 163990729 : h1 = ROTL32(h1, 13); 39 : 163990729 : h1 = h1 * 5 + 0xe6546b64; 40 : 163990729 : } 41 : : 42 : : //---------- 43 : : // tail 44 : 20583401 : const uint8_t* tail = vDataToHash.data() + nblocks * 4; 45 : : 46 : 20583401 : uint32_t k1 = 0; 47 : : 48 [ + + + + ]: 20583401 : switch (vDataToHash.size() & 3) { 49 : : case 3: 50 : 174032 : k1 ^= tail[2] << 16; 51 : : [[fallthrough]]; 52 : : case 2: 53 : 4575700 : k1 ^= tail[1] << 8; 54 : : [[fallthrough]]; 55 : : case 1: 56 : 5079899 : k1 ^= tail[0]; 57 : 5079899 : k1 *= c1; 58 : 5079899 : k1 = ROTL32(k1, 15); 59 : 5079899 : k1 *= c2; 60 : 5079899 : h1 ^= k1; 61 : 5079899 : } 62 : : 63 : : //---------- 64 : : // finalization 65 : 20583401 : h1 ^= vDataToHash.size(); 66 : 20583401 : h1 ^= h1 >> 16; 67 : 20583401 : h1 *= 0x85ebca6b; 68 : 20583401 : h1 ^= h1 >> 13; 69 : 20583401 : h1 *= 0xc2b2ae35; 70 : 20583401 : h1 ^= h1 >> 16; 71 : : 72 : 20583401 : return h1; 73 : : } 74 : : 75 : 312622 : void BIP32Hash(const ChainCode &chainCode, unsigned int nChild, unsigned char header, const unsigned char data[32], unsigned char output[64]) 76 : : { 77 : : unsigned char num[4]; 78 : 312622 : WriteBE32(num, nChild); 79 : 312622 : CHMAC_SHA512(chainCode.begin(), chainCode.size()).Write(&header, 1).Write(data, 32).Write(num, 4).Finalize(output); 80 : 312622 : } 81 : : 82 : 187095 : uint256 SHA256Uint256(const uint256& input) 83 : : { 84 : 187095 : uint256 result; 85 : 187095 : CSHA256().Write(input.begin(), 32).Finalize(result.begin()); 86 : 187095 : return result; 87 : : } 88 : : 89 : 865 : HashWriter TaggedHash(const std::string& tag) 90 : : { 91 : 865 : HashWriter writer{}; 92 : 865 : uint256 taghash; 93 : 865 : CSHA256().Write((const unsigned char*)tag.data(), tag.size()).Finalize(taghash.begin()); 94 : 865 : writer << taghash << taghash; 95 : 865 : return writer; 96 : : }