solanaceae_toxcore/solanaceae/core/utils.hpp

9 lines
160 B
C++
Raw Normal View History

2023-04-08 00:13:28 +02:00
#pragma once
#include <string>
#include <vector>
std::vector<uint8_t> hex2bin(const std::string& str);
std::string bin2hex(const std::vector<uint8_t>& bin);