aboutsummaryrefslogtreecommitdiff
path: root/src/uint256.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Increment MIT Licence copyright header year on files modified in 2016isle29832016-12-311-1/+1
| | | | | | Edited via: $ contrib/devtools/copyright_header.py update .
* Use SipHash-2-4 for CCoinsCache indexPieter Wuille2016-05-171-64/+0
| | | | | This is ~1.7x slower than the Lookup3-of-Xor-with-salt construct we were using before, but it is a primitive designed for exactly this.
* Bump copyright headers to 2015MarcoFalke2015-12-131-1/+1
|
* BUGFIX: Stack around the variable 'rv' was corruptedfsb40002015-03-121-2/+2
|
* uint256->arith_uint256 blob256->uint256Wladimir J. van der Laan2015-01-051-246/+35
| | | | | Introduce new opaque implementation of `uint256`, move old "arithmetic" implementation to `arith_uint256.
* Added "Core" to copyright headerssandakersmann2014-12-191-1/+1
| | | | | Github-Pull: #5494 Rebased-From: 15de949bb9277e442302bdd8dee299a8d6deee60
* Merge pull request #5470Wladimir J. van der Laan2014-12-191-1/+1
|\ | | | | | | 78253fc Remove references to X11 licence (Michael Ford)
| * Remove references to X11 licenceMichael Ford2014-12-161-1/+1
| |
* | Fix small typos in comments and error messagesPavel Janík2014-12-161-1/+1
|/ | | | | Rebased-From: 67b2d819cdf6181e7f016e5366ce7479830893bd Github-Pull: #5404
* Apply clang-format on some infrequently-updated filesPieter Wuille2014-09-191-56/+77
|
* Split up util.cpp/hWladimir J. van der Laan2014-08-261-1/+2
| | | | | | | | | | | | | | | | Split up util.cpp/h into: - string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach) - money utilities (parsesmoney, formatmoney) - time utilities (gettime*, sleep, format date): - and the rest (logging, argument parsing, config file parsing) The latter is basically the environment and OS handling, and is stripped of all utility functions, so we may want to rename it to something else than util.cpp/h for clarity (Matt suggested osinterface). Breaks dependency of sha256.cpp on all the things pulled in by util.
* Use unordered_map for CCoinsViewCache with salted hashPieter Wuille2014-07-141-0/+43
|
* Move non-trivial uint256.h methods to uint256.cppPieter Wuille2014-06-281-0/+292