libbasen v1.1.0
encoding/decoding from arbitrary base
Loading...
Searching...
No Matches
hex.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4#include <span>
5#include <string>
6#include <vector>
7
8namespace hex
9{
10 extern const char digits[17];
11 extern const uint8_t map[256];
12
13 bool isValid(const char *str, size_t str_size) noexcept;
14 bool isValid(std::string_view str) noexcept;
15
19 size_t sizeEncoded(std::span<const uint8_t> data);
20 size_t sizeDecoded(std::string_view str) noexcept;
21
26 void encode(const uint8_t *data, size_t data_size, char *str, size_t str_size);
27 std::string encode(std::span<const uint8_t> data);
28
35 void decode(const char *str, size_t str_size, uint8_t *data, size_t data_size);
36 std::vector<uint8_t> decode(std::string_view str);
37}
Definition hex.hpp:9
void decode(const char *str, size_t str_size, uint8_t *data, size_t data_size)
const uint8_t map[256]
size_t sizeDecoded(std::string_view str) noexcept
void encode(const uint8_t *data, size_t data_size, char *str, size_t str_size)
const char digits[17]
size_t sizeEncoded(std::span< const uint8_t > data)
bool isValid(const char *str, size_t str_size) noexcept