Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-07-08 | Fix subscript[0] in base58.cpp | Jeremy Rubin | |
2017-05-31 | [trivial] Add end of namespace comments | practicalswift | |
2017-03-21 | [trivial] Fix typos in comments | practicalswift | |
2016-12-31 | Increment MIT Licence copyright header year on files modified in 2016 | isle2983 | |
Edited via: $ contrib/devtools/copyright_header.py update . | |||
2016-09-16 | Use prefix operator in for loop of DecodeBase58. | Jiaxing Wang | |
2016-09-15 | base58: Improve DecodeBase58 performance. | Jiaxing Wang | |
Improve DecodeBase58 performance the same way as commit 3252208 did for EncodeBase58. | |||
2016-04-21 | CBase58Data::SetString: cleanse the full vector | Kaz Wesley | |
SetString seems to be passing the length of the wrong variable to memory_cleanse, resulting in the last byte of the temporary buffer not being securely erased. | |||
2016-03-09 | Improve EncodeBase58 performance | João Barbosa | |
2015-12-13 | Bump copyright headers to 2015 | MarcoFalke | |
2015-02-15 | openssl: abstract out OPENSSL_cleanse | Cory Fields | |
This makes it easier for us to replace it if desired, since it's now only in one spot. Also, it avoids the openssl include from allocators.h, which essentially forced openssl to be included from every compilation unit. | |||
2014-12-19 | Added "Core" to copyright headers | sandakersmann | |
Github-Pull: #5494 Rebased-From: 15de949bb9277e442302bdd8dee299a8d6deee60 | |||
2014-11-21 | Convert remaining comments in /src to doxygen format | Michael Ford | |
- Update comments in checkpoints to be doxygen compatible - Update comments in checkqueue to be doxygen compatible - Update coins to be doxygen compatible - Fix comment typo in crypter.h - Update licenses/copyright dates Closes #5325 #5184 #5183 #5182 | |||
2014-09-23 | Fixing out of bounds error in GetKey() | ENikS | |
2014-09-19 | Apply clang-format on some infrequently-updated files | Pieter Wuille | |
2014-08-30 | Broken addresses on command line no longer trigger testnet. | Ross Nicoll | |
When passing a bitcoin: URI on the command line, invalid addresses do not incorrectly send the user to the test network. | |||
2014-06-26 | ensure clean and consistent "namespace" usage | Philip Kaufmann | |
- remove some missplaced ; - ensure end of a namespace is clearly visible - use same formatting when using namespace | |||
2014-06-11 | base58: add paranoid return value checks | Jeff Garzik | |
2014-05-10 | Move base58.h implementation code to base58.cpp | Pieter Wuille | |
2014-04-22 | Replace DecodeBase58/EncodeBase58 with direct implementation. | Pieter Wuille | |
This removes the bignum/OpenSSL dependency. The base58 transformation code is also moved to a separate .cpp file. |