#ifndef UTILS_H
#define UTILS_H

#include <vector>
#include <string>


namespace utils
{
std::string convertBinToHexstr(const std::vector<unsigned char>& bin);
};

#endif // UTILS_H