#include <cstdint>
#include <span>
#include <string>
#include <vector>
Go to the source code of this file.
|
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) |
|