libbasen v1.1.0
encoding/decoding from arbitrary base
Loading...
Searching...
No Matches
hex Namespace Reference

Functions

bool isValid (const char *str, size_t str_size) noexcept
 
bool isValid (std::string_view str) noexcept
 
size_t sizeEncoded (std::span< const uint8_t > data)
 
size_t sizeDecoded (std::string_view str) noexcept
 
void encode (const uint8_t *data, size_t data_size, char *str, size_t str_size)
 
std::string encode (std::span< const uint8_t > data)
 
void decode (const char *str, size_t str_size, uint8_t *data, size_t data_size)
 
std::vector< uint8_t > decode (std::string_view str)
 

Variables

const char digits [17]
 
const uint8_t map [256]
 

Function Documentation

◆ isValid() [1/2]

bool hex::isValid ( const char * str,
size_t str_size )
noexcept

◆ isValid() [2/2]

bool hex::isValid ( std::string_view str)
noexcept

◆ sizeEncoded()

size_t hex::sizeEncoded ( std::span< const uint8_t > data)
Exceptions
basen::Exception(OVERFLOW)if there is an overflow

◆ sizeDecoded()

size_t hex::sizeDecoded ( std::string_view str)
noexcept

◆ encode() [1/2]

void hex::encode ( const uint8_t * data,
size_t data_size,
char * str,
size_t str_size )
Exceptions
basen::Exception(LENGTH)if not enough allocated length
Warning
contain leading zeros, returns count of them

◆ encode() [2/2]

std::string hex::encode ( std::span< const uint8_t > data)

◆ decode() [1/2]

void hex::decode ( const char * str,
size_t str_size,
uint8_t * data,
size_t data_size )
Exceptions
basen::Exception(LENGTH)if not enough allocated length
basen::Exception(OUT_OF_ALPH)if out of digits map
basen::Exception(PADDING)if str_size %2 != 0 (isn't hex)
Warning
contain leading zeros, returns count of them

◆ decode() [2/2]

std::vector< uint8_t > hex::decode ( std::string_view str)

Variable Documentation

◆ digits

const char hex::digits[17]
extern

◆ map

const uint8_t hex::map[256]
extern