Botan
1.11.15
|
#include <botan/base64.h>
#include <botan/mem_ops.h>
#include <botan/internal/rounding.h>
#include <stdexcept>
Go to the source code of this file.
Namespaces | |
namespace | Botan |
Functions | |
size_t | Botan::base64_decode (byte output[], const char input[], size_t input_length, size_t &input_consumed, bool final_inputs, bool ignore_ws) |
size_t | Botan::base64_decode (byte output[], const char input[], size_t input_length, bool ignore_ws) |
size_t | Botan::base64_decode (byte output[], const std::string &input, bool ignore_ws) |
secure_vector< byte > | Botan::base64_decode (const char input[], size_t input_length, bool ignore_ws) |
secure_vector< byte > | Botan::base64_decode (const std::string &input, bool ignore_ws) |
size_t | Botan::base64_encode (char out[], const byte in[], size_t input_length, size_t &input_consumed, bool final_inputs) |
std::string | Botan::base64_encode (const byte input[], size_t input_length) |