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 |
void | encode (const uint8_t *data, size_t data_size, char *str, size_t str_size) |
std::string | encode (std::span< const uint8_t > data) |
void | decode (const char *str, size_t str_size, uint8_t *data, size_t data_size) |
std::vector< uint8_t > | decode (std::string_view str) |
Variables | |
const char | digits [65] |
const uint8_t | map [256] |
|
noexcept |
|
noexcept |
size_t base64::sizeEncoded | ( | std::span< const uint8_t > | data | ) |
basen::Exception(OVERFLOW) | if there is an overflow |
|
noexcept |
void base64::encode | ( | const uint8_t * | data, |
size_t | data_size, | ||
char * | str, | ||
size_t | str_size ) |
basen::Exception(LENGTH) | if not enough allocated length |
std::string base64::encode | ( | std::span< const uint8_t > | data | ) |
void base64::decode | ( | const char * | str, |
size_t | str_size, | ||
uint8_t * | data, | ||
size_t | data_size ) |
basen::Exception(LENGTH) | if not enough allocated length |
basen::Exception(OUT_OF_ALPH) | if out of digits map |
basen::Exception(PADDING) | if incorrect padding |
std::vector< uint8_t > base64::decode | ( | std::string_view | str | ) |
|
extern |
|
extern |