boost::algorithm 十六进制和非十六进制显示意外结果

boost::algorithm hex and unhex showing unexpected results

编辑:看来我犯了一个愚蠢的错误:)

有人知道为什么下面的代码会产生 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;
}

Output:

01630B917123862732F0000002EF18

0001630B917123862732F0000002EF18

额外字节在这里:

    std::vector<uint8_t> bytes = {0};

您应该像这样删除多余的字节:

    std::vector<uint8_t> bytes;