blob: 7639ab723eec6524c2fce76a044cc15d1d542aa4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "utils.h"
#include <sstream>
#include <iomanip>
namespace utils
{
std::string convertBinToHexstr(const std::vector<unsigned char>& bin)
{
std::stringstream buffer;
for (auto byte : bin)
{
buffer << std::hex << std::setfill('0');
buffer << std::setw(2) << static_cast<unsigned>(byte);
}
return buffer.str();
}
}
|