Botan  1.11.15
Namespaces | Functions
src/lib/codec/hex/hex.h File Reference
#include <botan/secmem.h>
#include <string>

Go to the source code of this file.

Namespaces

namespace  Botan

Functions

size_t Botan::hex_decode (byte output[], const char input[], size_t input_length, size_t &input_consumed, bool ignore_ws)
size_t Botan::hex_decode (byte output[], const char input[], size_t input_length, bool ignore_ws)
size_t Botan::hex_decode (byte output[], const std::string &input, bool ignore_ws)
std::vector< byte > Botan::hex_decode (const char input[], size_t input_length, bool ignore_ws)
std::vector< byte > Botan::hex_decode (const std::string &input, bool ignore_ws)
secure_vector< byte > Botan::hex_decode_locked (const char input[], size_t input_length, bool ignore_ws)
secure_vector< byte > Botan::hex_decode_locked (const std::string &input, bool ignore_ws)
void Botan::hex_encode (char output[], const byte input[], size_t input_length, bool uppercase)
std::string Botan::hex_encode (const byte input[], size_t input_length, bool uppercase)
template<typename Alloc >
std::string Botan::hex_encode (const std::vector< byte, Alloc > &input, bool uppercase=true)