Botan 3.4.0
Crypto and TLS for C&
Namespaces | Functions
hex.cpp File Reference
#include <botan/hex.h>
#include <botan/exceptn.h>
#include <botan/mem_ops.h>
#include <botan/internal/charset.h>
#include <botan/internal/ct_utils.h>
#include <botan/internal/fmt.h>

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)
 
size_t Botan::hex_decode (std::span< uint8_t > output, std::string_view input, bool ignore_ws)
 
std::vector< uint8_t > Botan::hex_decode (std::string_view 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[], std::string_view 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 (std::string_view input, bool ignore_ws)
 
void Botan::hex_encode (char output[], const uint8_t input[], size_t input_length, bool uppercase)
 
std::string Botan::hex_encode (const uint8_t input[], size_t input_length, bool uppercase)