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";
|
|
|
|
|
2012-03-25 14:03:22 +03:00
|
|
|
static inline std::string hex_encode(const char *data, unsigned int data_size)
|
2012-02-08 11:49:24 +01:00
|
|
|
{
|
|
|
|
std::string ret;
|
2019-04-07 13:01:42 +03:00
|
|
|
ret.reserve(data_size * 2);
|
2019-04-09 00:10:02 +05:30
|
|
|
|
2012-02-08 11:49:24 +01:00
|
|
|
char buf2[3];
|
|
|
|
buf2[2] = '\0';
|
|
|
|
|
2017-04-07 08:50:17 +02:00
|
|
|
for (unsigned int i = 0; i < data_size; i++) {
|
|
|
|
unsigned char c = (unsigned char)data[i];
|
2012-02-08 11:49:24 +01:00
|
|
|
buf2[0] = hex_chars[(c & 0xf0) >> 4];
|
|
|
|
buf2[1] = hex_chars[c & 0x0f];
|
|
|
|
ret.append(buf2);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2024-02-17 15:35:33 +01:00
|
|
|
static inline std::string hex_encode(std::string_view data)
|
2012-03-25 14:03:22 +03:00
|
|
|
{
|
2024-02-17 15:35:33 +01:00
|
|
|
return hex_encode(data.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;
|
|
|
|
}
|