| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add TaggedHash function (BIP 340) | Pieter Wuille | 2020-10-12 | 1 | -0/+10 |
| | | | | | | This adds the TaggedHash function as defined by BIP340 to the hash module, which is used in BIP340 and BIP341 to produce domain-separated hashes. | ||||
| * | Add SHA256Uint256 helper functions | Jeremy Rubin | 2020-08-06 | 1 | -0/+7 |
| | | |||||
| * | Make MurmurHash3 consume Spans | Pieter Wuille | 2020-07-30 | 1 | -1/+1 |
| | | |||||
| * | Extract CSipHasher to it's own file in crypto/ directory. | Jim Posen | 2018-11-05 | 1 | -168/+0 |
| | | | | | This is a move-only commit with the exception of changes to includes. | ||||
| * | Update copyright headers to 2018 | DrahtBot | 2018-07-27 | 1 | -1/+1 |
| | | |||||
| * | Increment MIT Licence copyright header year on files modified in 2017 | Akira Takizawa | 2018-01-03 | 1 | -1/+1 |
| | | |||||
| * | Remove unused include in hash.cpp | Karl-Johan Alm | 2017-12-13 | 1 | -1/+0 |
| | | |||||
| * | scripted-diff: Replace #include "" with #include <> (ryanofsky) | MeshCollider | 2017-11-16 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -BEGIN VERIFY SCRIPT- for f in \ src/*.cpp \ src/*.h \ src/bench/*.cpp \ src/bench/*.h \ src/compat/*.cpp \ src/compat/*.h \ src/consensus/*.cpp \ src/consensus/*.h \ src/crypto/*.cpp \ src/crypto/*.h \ src/crypto/ctaes/*.h \ src/policy/*.cpp \ src/policy/*.h \ src/primitives/*.cpp \ src/primitives/*.h \ src/qt/*.cpp \ src/qt/*.h \ src/qt/test/*.cpp \ src/qt/test/*.h \ src/rpc/*.cpp \ src/rpc/*.h \ src/script/*.cpp \ src/script/*.h \ src/support/*.cpp \ src/support/*.h \ src/support/allocators/*.h \ src/test/*.cpp \ src/test/*.h \ src/wallet/*.cpp \ src/wallet/*.h \ src/wallet/test/*.cpp \ src/wallet/test/*.h \ src/zmq/*.cpp \ src/zmq/*.h do base=${f%/*}/ relbase=${base#src/} sed -i "s:#include \"\(.*\)\"\(.*\):if test -e \$base'\\1'; then echo \"#include <\"\$relbase\"\\1>\\2\"; else echo \"#include <\\1>\\2\"; fi:e" $f done -END VERIFY SCRIPT- | ||||
| * | Cleanup (safe, it was checked) subscript[0] in MurmurHash3 (and cleanup ↵ | Jeremy Rubin | 2017-07-08 | 1 | -23/+20 |
| | | | | | MurmurHash3 to be more clear). | ||||
| * | Add specialization of SipHash for 256 + 32 bit data | Pieter Wuille | 2017-05-26 | 1 | -0/+41 |
| | | | | | | | We'll need a version of SipHash for tuples of 256 bits and 32 bits data, when CCoinsViewCache switches from using txids to COutPoints as keys. | ||||
| * | Remove redundant semicolons | practicalswift | 2017-01-14 | 1 | -1/+1 |
| | | |||||
| * | Increment MIT Licence copyright header year on files modified in 2016 | isle2983 | 2016-12-31 | 1 | -1/+1 |
| | | | | | | | Edited via: $ contrib/devtools/copyright_header.py update . | ||||
| * | Support SipHash with arbitrary byte writes | Pieter Wuille | 2016-06-07 | 1 | -3/+36 |
| | | |||||
| * | Add SipHash-2-4 primitives to hash | Pieter Wuille | 2016-05-17 | 1 | -0/+94 |
| | | |||||
| * | Bump copyright headers to 2015 | MarcoFalke | 2015-12-13 | 1 | -1/+1 |
| | | |||||
| * | chaincodes: abstract away more chaincode behavior | Cory Fields | 2015-05-06 | 1 | -5/+3 |
| | | | | | [squashme] replace struct CCainCode with a typedef uint256 ChainCode | ||||
| * | src/hash.cpp: endian compatibility | Wladimir J. van der Laan | 2015-03-06 | 1 | -2/+4 |
| | | |||||
| * | Added "Core" to copyright headers | sandakersmann | 2014-12-19 | 1 | -1/+1 |
| | | | | | | Github-Pull: #5494 Rebased-From: 15de949bb9277e442302bdd8dee299a8d6deee60 | ||||
| * | Split up crypto/sha2 | Pieter Wuille | 2014-11-20 | 1 | -0/+1 |
| | | |||||
| * | Adding license. | sinetek | 2014-11-08 | 1 | -0/+4 |
| | | |||||
| * | boost: moveonly: move BIP32Hash to hash.h | Cory Fields | 2014-10-31 | 1 | -0/+13 |
| | | |||||
| * | Avoiding referencing elements of an empty vector | ENikS | 2014-09-23 | 1 | -33/+36 |
| | | |||||
| * | Apply clang-format on some infrequently-updated files | Pieter Wuille | 2014-09-19 | 1 | -14/+18 |
| | | |||||
| * | Add a built-in SHA256/SHA512 implementation. | Pieter Wuille | 2014-06-21 | 1 | -41/+0 |
| | | | | | This also moves the HMAC-SHA512 implementation to sha2.cpp. | ||||
| * | Add HMAC-SHA512 to hash | Pieter Wuille | 2013-06-24 | 1 | -0/+41 |
| | | |||||
| * | Add MurmurHash3 implementation to hash.h/add hash.cpp. | Matt Corallo | 2013-01-16 | 1 | -0/+58 |