1
0
mirror of https://github.com/GOSTSec/poolserver synced 2025-01-14 08:47:53 +00:00

gost hash for merkle tree

This commit is contained in:
orignal 2017-09-07 16:33:27 -04:00
parent a075d555db
commit 991f770800
3 changed files with 16 additions and 3 deletions

View File

@ -16,7 +16,7 @@ namespace Bitcoin
for (uint32 i = 0; i < size; i += 2)
{
uint32 i2 = std::min(i+1, size-1);
merkleTree.push_back(Crypto::GOSTD(Util::Join(merkleTree[j+i], merkleTree[j+i2])));
merkleTree.push_back(Crypto::GOSTD(merkleTree[j+i], merkleTree[j+i2]));
}
j += size;
@ -35,7 +35,7 @@ namespace Bitcoin
uint32 j = 0;
for (uint32 size = tx.size(); size > 1; size = (size+1)/2)
{
merkleTree[j+size] = Crypto::GOSTD(Util::Join(merkleTree[j], merkleTree[j+1]));
merkleTree[j+size] = Crypto::GOSTD(merkleTree[j], merkleTree[j+1]);
j += size;
}

View File

@ -14,4 +14,16 @@ namespace Crypto
hash.push_back (hash2[31-i]);
return hash;
}
BinaryData GOSTD(BinaryData data1, BinaryData data2)
{
BinaryData data3 = data1;
data3.insert(data3.end(), data2.begin(), data2.end());
uint8_t hash1[64];
std::vector<byte> hash(32);
i2p::crypto::GOSTR3411_2012_512 (&data3[0], data3.size (), hash1);
i2p::crypto::GOSTR3411_2012_256 (hash1, 64, &hash[0]);
// we don't convert to Little Endian here
return hash;
}
}

View File

@ -10,6 +10,7 @@
namespace Crypto
{
BinaryData GOSTD(BinaryData data);
}
BinaryData GOSTD(BinaryData data1, BinaryData data2); // for merkle
}
#endif