微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何使用 cryptopp::hex 进行编码和解码

如何解决如何使用 cryptopp::hex 进行编码和解码

我在使用 cyrptopp::hex 时遇到了编码和解码问题。

我有一个字符串,我想在保存在数据库中时对其进行编码,并在从数据库中加载一些数据时对其进行解码。我已阅读 https://www.cryptopp.com/wiki/HexEncoderhttps://www.cryptopp.com/wiki/HexDecoder 中的文档,请遵循附加 BufferedTransformation。但是没有结果。

我的功能是:

string hexEncoder(string message){
char const* decoded = message.c_str();
string encoded;

HexEncoder encoder;
encoder.Attach(new StringSink(encoded));
encoder.Put((decoded,sizeof(decoded)));
encoder.MessageEnd();
return encoded;
}

string hexDecoder(string message){
string decoded;
HexDecoder decoder;

decoder.Attach(new StringSink(decoded));
decoder.Put(((byte*)message.data(),message.size()));
decoder.MessageEnd();
return decoded;
}

我是如何解决这个问题的。提前致谢。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。