gpt4 book ai didi

c++ - 将十六进制字符串转换为 Crypto++ 中的字节

转载 作者:太空狗 更新时间:2023-10-29 20:26:55 26 4
gpt4 key购买 nike

我有一个十六进制字符串,我需要将其转换为 const byte*。我正在使用 Crypto++ 进行哈希处理,它需要 key 在 const byte* 中 有什么方法可以将十六进制字符串转换为 const byte* 使用任何Crypto++ 库还是我必须想出自己的库?

最佳答案

有一个HexDecoder Crypto++ 中的类。

你需要喂这个角色。好像Crypto++并没有直接区分字符和字节。因此,varren 提供的以下代码行将起作用:

string destination;
StringSource ss(source, true, new HexDecoder(new StringSink(destination)));
const byte* result = (const byte*) destination.data();

关于c++ - 将十六进制字符串转换为 Crypto++ 中的字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17816312/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com