Mineserver
A rewrite of Minecraft 1.8.9 in C++ !
|
The file containing MinecraftUUID logic. More...
#include "uuid.h"
#include <utils/crypto.h>
#include <vector>
#include <algorithm>
#include <sstream>
#include <iomanip>
Functions | |
char | hexDigitToChar (char ch) |
Convert one character to byte value in Base64 format. | |
bool | isValidHexChar (char ch) |
Check whether the character is a valid Base64 character. | |
unsigned char | hexPairToChar (char a, char b) |
Converts two chars to one byte. | |
Convert one character to byte value in Base64 format.
ch | the character |
Converts two chars to one byte.
a | the first char |
b | the second char |