mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
28 lines
559 B
C++
28 lines
559 B
C++
#include <llarp/encode.hpp>
|
|
#include <stdexcept>
|
|
|
|
namespace llarp
|
|
{
|
|
int
|
|
char2int(char input)
|
|
{
|
|
if(input >= '0' && input <= '9')
|
|
return input - '0';
|
|
if(input >= 'A' && input <= 'F')
|
|
return input - 'A' + 10;
|
|
if(input >= 'a' && input <= 'f')
|
|
return input - 'a' + 10;
|
|
throw std::invalid_argument("Invalid input string");
|
|
}
|
|
|
|
void
|
|
HexDecode(const char* src, uint8_t* target)
|
|
{
|
|
while(*src && src[1])
|
|
{
|
|
*(target++) = char2int(*src) * 16 + char2int(src[1]);
|
|
src += 2;
|
|
}
|
|
}
|
|
} // namespace llarp
|