first core commit

This commit is contained in:
2023-04-08 00:13:28 +02:00
commit de8adbd2b7
14 changed files with 1293 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#pragma once
#include <string>
#include <vector>
std::vector<uint8_t> hex2bin(const std::string& str);
std::string bin2hex(const std::vector<uint8_t>& bin);