ゴミ箱
|
Functions | |
char const * | get_alphabet () |
signed char const * | get_inverse () |
std::size_t constexpr | encoded_size (std::size_t n) |
Returns max chars needed to encode a base64 string. More... | |
std::size_t constexpr | decoded_size (std::size_t n) |
Returns max bytes needed to decode a base64 string. More... | |
template<class = void> | |
std::size_t | encode (void *dest, void const *src, std::size_t len) |
template<class = void> | |
std::pair< std::size_t, std::size_t > | decode (void *dest, char const *src, std::size_t len) |
std::pair<std::size_t, std::size_t> boost::beast::detail::base64::decode | ( | void * | dest, |
char const * | src, | ||
std::size_t | len | ||
) |
Decode a padded base64 string into a series of octets.
The memory pointed to by out
points to valid memory of at least decoded_size(len)
bytes.
out
, and the number of characters read from the input string, expressed as a pair.
|
inline |
Returns max bytes needed to decode a base64 string.
std::size_t boost::beast::detail::base64::encode | ( | void * | dest, |
void const * | src, | ||
std::size_t | len | ||
) |
Encode a series of octets as a padded, base64 string.
The resulting string will not be null terminated.
The memory pointed to by out
points to valid memory of at least encoded_size(len)
bytes.
out
. This will exclude any null termination.
|
inline |
Returns max chars needed to encode a base64 string.
|
inline |
|
inline |