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