如何解决boost::algorithm hex 和 unhex 显示意外结果
有人知道为什么下面的代码会产生 2 个不同的十六进制字符串吗?
开头好像多了一个字节。 boost 的 hex 和 unhex 不能很好地协同工作还是我遗漏了什么?欢迎使用 C++17 的更好替代品!
std::string hex(const std::vector<uint8_t>& v)
{
std::string to;
boost::algorithm::hex(v.begin(),v.end(),std::back_inserter(to));
return to;
}
std::vector<uint8_t> unhex(const std::string& hex)
{
std::vector<uint8_t> bytes = {0};
boost::algorithm::unhex(hex,std::back_inserter(bytes));
return bytes;
}
int main()
{
string payload = "01630B917123862732F0000002EF18";
cout << payload << endl;
cout << hex(unhex(payload)) << endl;
}
输出:
01630B917123862732F0000002EF18
0001630B917123862732F0000002EF18
解决方法
额外的字节在这里:
std::vector<uint8_t> bytes = {0};
你应该像这样删除额外的字节:
std::vector<uint8_t> bytes;
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。