#include <cstdint>
#include <span>
#include <string>
#include <vector>
Go to the source code of this file.
Namespaces | |
namespace | base58 |
Functions | |
bool | base58::isValid (const char *str, size_t str_size) noexcept |
bool | base58::isValid (std::string_view str) noexcept |
size_t | base58::sizeEncoded (std::span< const uint8_t > data) |
size_t | base58::sizeDecoded (std::string_view str) 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) |
std::vector< uint8_t > | base58::decodeCheck (std::string_view str) |
Variables | |
const char | base58::digits [59] |
bitcoin alphabet | |
const uint8_t | base58::map [256] |