Functions | |
bool | isValid (const char *str, size_t str_size) noexcept |
bool | isValid (std::string_view str) noexcept |
size_t | sizeEncoded (std::span< const uint8_t > data) |
size_t | sizeDecoded (std::string_view str) noexcept |
size_t | encode (const uint8_t *data, size_t data_size, char *str, size_t str_size) |
std::string | encode (std::span< const uint8_t > data) |
size_t | decode (const char *str, size_t str_size, uint8_t *data, size_t data_size) |
std::vector< uint8_t > | decode (std::string_view str) |
std::string | encodeCheck (std::span< const uint8_t > data) |
std::vector< uint8_t > | decodeCheck (std::string_view str) |
Variables | |
const char | digits [59] |
bitcoin alphabet | |
const uint8_t | map [256] |
|
noexcept |
|
noexcept |
size_t base58::sizeEncoded | ( | std::span< const uint8_t > | data | ) |
basen::Exception(OVERFLOW) | if there is an overflow |
|
noexcept |
size_t base58::encode | ( | const uint8_t * | data, |
size_t | data_size, | ||
char * | str, | ||
size_t | str_size ) |
std::string base58::encode | ( | std::span< const uint8_t > | data | ) |
size_t base58::decode | ( | const char * | str, |
size_t | str_size, | ||
uint8_t * | data, | ||
size_t | data_size ) |
std::vector< uint8_t > base58::decode | ( | std::string_view | str | ) |
std::string base58::encodeCheck | ( | std::span< const uint8_t > | data | ) |
data | vector or span of data which you want to encode |
std::vector< uint8_t > base58::decodeCheck | ( | std::string_view | str | ) |
str | string or string_view which you want to decode |
basen::Exception(PADDING) | if str size < 4 |
basen::Exception(CHECKSUM) | checksum incorrect |
|
extern |
bitcoin alphabet
|
extern |