blob: 1d71b90870a48a59b5fee542f60557c7564fe706 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef UTILS_H
#define UTILS_H
#include <vector>
#include <string>
namespace utils
{
std::string convertBinToHexstr(const std::vector<unsigned char>& bin);
};
#endif // UTILS_H
|