1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-27 17:28:41 +00:00
luanti/src/util/hex.h

44 lines
1,003 B
C
Raw Normal View History

// Luanti
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (C) 2013 Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2012-02-08 11:49:24 +01:00
#pragma once
2012-02-08 11:49:24 +01:00
#include <string>
#include <string_view>
2012-02-08 11:49:24 +01:00
static const char hex_chars[] = "0123456789abcdef";
[[nodiscard]]
static inline std::string hex_encode(std::string_view data)
2012-02-08 11:49:24 +01:00
{
std::string ret;
ret.reserve(data.size() * 2);
for (unsigned char c : data) {
ret.push_back(hex_chars[(c & 0xf0) >> 4]);
ret.push_back(hex_chars[c & 0x0f]);
2012-02-08 11:49:24 +01:00
}
return ret;
}
[[nodiscard]]
static inline std::string hex_encode(const char *data, size_t data_size)
2012-03-25 14:03:22 +03:00
{
if (!data_size)
return "";
return hex_encode(std::string_view(data, data_size));
2012-03-25 14:03:22 +03:00
}
2013-08-29 05:56:48 +02:00
static inline bool hex_digit_decode(char hexdigit, unsigned char &value)
{
if (hexdigit >= '0' && hexdigit <= '9')
2013-08-29 05:56:48 +02:00
value = hexdigit - '0';
else if (hexdigit >= 'A' && hexdigit <= 'F')
2013-08-29 05:56:48 +02:00
value = hexdigit - 'A' + 10;
else if (hexdigit >= 'a' && hexdigit <= 'f')
2013-08-29 05:56:48 +02:00
value = hexdigit - 'a' + 10;
else
return false;
return true;
}