Botan  1.11.15
Namespaces | Functions
src/lib/codec/hex/hex.cpp File Reference
#include <botan/hex.h>
#include <botan/mem_ops.h>
#include <stdexcept>

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)