2024-10-28 15:57:39 +01:00
|
|
|
// 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
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2012-02-08 11:49:24 +01:00
|
|
|
|
|
|
|
#include <string>
|
2024-02-17 15:35:33 +01:00
|
|
|
#include <string_view>
|
2012-02-08 11:49:24 +01:00
|
|
|
|
|
|
|
static const char hex_chars[] = "0123456789abcdef";
|
|
|
|
|
2025-03-26 19:08:31 +01:00
|
|
|
static inline std::string hex_encode(std::string_view data)
|
2012-02-08 11:49:24 +01:00
|
|
|
{
|
|
|
|
std::string ret;
|
2025-03-26 19:08:31 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2025-03-26 19:08:31 +01:00
|
|
|
static inline std::string hex_encode(const char *data, size_t data_size)
|
2012-03-25 14:03:22 +03:00
|
|
|
{
|
2025-03-26 19:08:31 +01: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)
|
|
|
|
{
|
2017-04-07 08:50:17 +02:00
|
|
|
if (hexdigit >= '0' && hexdigit <= '9')
|
2013-08-29 05:56:48 +02:00
|
|
|
value = hexdigit - '0';
|
2017-04-07 08:50:17 +02:00
|
|
|
else if (hexdigit >= 'A' && hexdigit <= 'F')
|
2013-08-29 05:56:48 +02:00
|
|
|
value = hexdigit - 'A' + 10;
|
2017-04-07 08:50:17 +02:00
|
|
|
else if (hexdigit >= 'a' && hexdigit <= 'f')
|
2013-08-29 05:56:48 +02:00
|
|
|
value = hexdigit - 'a' + 10;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|