aboutsummaryrefslogtreecommitdiff
path: root/src/base58.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Apply clang-format on some infrequently-updated filesPieter Wuille2014-09-191-49/+80
|
* Broken addresses on command line no longer trigger testnet.Ross Nicoll2014-08-301-2/+6
| | | | | When passing a bitcoin: URI on the command line, invalid addresses do not incorrectly send the user to the test network.
* ensure clean and consistent "namespace" usagePhilip Kaufmann2014-06-261-1/+3
| | | | | | - remove some missplaced ; - ensure end of a namespace is clearly visible - use same formatting when using namespace
* base58: add paranoid return value checksJeff Garzik2014-06-111-5/+4
|
* Move base58.h implementation code to base58.cppPieter Wuille2014-05-101-0/+183
|
* Replace DecodeBase58/EncodeBase58 with direct implementation.Pieter Wuille2014-04-221-0/+91
This removes the bignum/OpenSSL dependency. The base58 transformation code is also moved to a separate .cpp file.