libbasen v1.1.0
encoding/decoding from arbitrary base
Loading...
Searching...
No Matches
hex.hpp File Reference
#include <cstdint>
#include <span>
#include <string>
#include <vector>

Go to the source code of this file.

Namespaces

namespace  hex
 

Functions

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

Variables

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