![]() |
Bitcoin Core 31.0.0
P2P Digital Currency
|
Go to the source code of this file.
Functions | |
| std::string | EncodeBase58 (std::span< const unsigned char > input) |
| Why base-58 instead of standard base-64 encoding? | |
| bool | DecodeBase58 (const std::string &str, std::vector< unsigned char > &vchRet, int max_ret_len) |
| Decode a base58-encoded string (str) into a byte vector (vchRet). | |
| std::string | EncodeBase58Check (std::span< const unsigned char > input) |
| Encode a byte span into a base58-encoded string, including checksum. | |
| bool | DecodeBase58Check (const std::string &str, std::vector< unsigned char > &vchRet, int max_ret_len) |
| Decode a base58-encoded string (str) that includes a checksum into a byte vector (vchRet), return true if decoding is successful. | |
|
nodiscard |
Decode a base58-encoded string (str) into a byte vector (vchRet).
return true if decoding is successful.
Definition at line 129 of file base58.cpp.
|
nodiscard |
Decode a base58-encoded string (str) that includes a checksum into a byte vector (vchRet), return true if decoding is successful.
Definition at line 163 of file base58.cpp.
| std::string EncodeBase58 | ( | std::span< const unsigned char > | input | ) |
Why base-58 instead of standard base-64 encoding?
Definition at line 89 of file base58.cpp.
| std::string EncodeBase58Check | ( | std::span< const unsigned char > | input | ) |
Encode a byte span into a base58-encoded string, including checksum.
Definition at line 137 of file base58.cpp.