|
Botan 3.9.0
Crypto and TLS for C&
|
#include <botan/base64.h>#include <botan/exceptn.h>#include <botan/internal/charset.h>#include <botan/internal/codec_base.h>#include <botan/internal/ct_utils.h>#include <botan/internal/fmt.h>#include <botan/internal/int_utils.h>#include <botan/internal/loadstor.h>#include <botan/internal/rounding.h>Go to the source code of this file.
Namespaces | |
| namespace | Botan |
Functions | |
| secure_vector< uint8_t > | Botan::base64_decode (const char input[], size_t input_length, bool ignore_ws) |
| size_t | Botan::base64_decode (std::span< uint8_t > output, std::string_view input, bool ignore_ws) |
| secure_vector< uint8_t > | Botan::base64_decode (std::string_view input, bool ignore_ws) |
| size_t | Botan::base64_decode (uint8_t out[], const char in[], size_t input_length, size_t &input_consumed, bool final_inputs, bool ignore_ws) |
| size_t | Botan::base64_decode (uint8_t output[], const char input[], size_t input_length, bool ignore_ws) |
| size_t | Botan::base64_decode (uint8_t output[], std::string_view input, bool ignore_ws) |
| size_t | Botan::base64_decode_max_output (size_t input_length) |
| size_t | Botan::base64_encode (char out[], const uint8_t in[], size_t input_length, size_t &input_consumed, bool final_inputs) |
| std::string | Botan::base64_encode (const uint8_t input[], size_t input_length) |
| size_t | Botan::base64_encode_max_output (size_t input_length) |