You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/encode.cpp

28 lines
516 B
C++

#include <llarp/encode.hpp>
6 years ago
#include <stdexcept>
6 years ago
namespace llarp
{
int
char2int(char input)
6 years ago
{
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;
6 years ago
return 0;
6 years ago
}
void
HexDecode(const char* src, uint8_t* target)
{
6 years ago
while(*src && src[1])
{
*(target++) = char2int(*src) * 16 + char2int(src[1]);
6 years ago
src += 2;
}
}
6 years ago
} // namespace llarp