Botan 2.19.3
Crypto and TLS for C&
|
#include <botan/secmem.h>
#include <string>
Go to the source code of this file.
Namespaces | |
namespace | Botan |
Functions | |
std::vector< uint8_t > | Botan::hex_decode (const char input[], size_t input_length, bool ignore_ws) |
std::vector< uint8_t > | Botan::hex_decode (const std::string &input, bool ignore_ws) |
size_t | Botan::hex_decode (uint8_t output[], const char input[], size_t input_length, bool ignore_ws) |
size_t | Botan::hex_decode (uint8_t output[], const char input[], size_t input_length, size_t &input_consumed, bool ignore_ws) |
size_t | Botan::hex_decode (uint8_t output[], const std::string &input, bool ignore_ws) |
secure_vector< uint8_t > | Botan::hex_decode_locked (const char input[], size_t input_length, bool ignore_ws) |
secure_vector< uint8_t > | Botan::hex_decode_locked (const std::string &input, bool ignore_ws) |
void | Botan::hex_encode (char output[], const uint8_t input[], size_t input_length, bool uppercase) |
template<typename Alloc > | |
std::string | Botan::hex_encode (const std::vector< uint8_t, Alloc > &input, bool uppercase=true) |
std::string | Botan::hex_encode (const uint8_t input[], size_t input_length, bool uppercase) |