我正在尝试解密在CBC_Mode中使用AES加密的字符串。我在结果中看到了正确的数据,但它被填充字节污染了。 我的第一次尝试是使用this线程中建议的重定向器:
std::string result_;
CryptoPP::CBC_Mode<CryptoPP::AES>::Decryption decrypt_;
...
void decrypt(std::string cipheredText)
{
try
{
CryptoPP::MeterFilter meter(new CryptoPP::StringSink(result_));
CryptoPP::StringSource pipeline(
cipheredText,
true,
new CryptoPP::StreamTransformationFilter(
decrypt_,
new CryptoPP::Redirector(meter),
CryptoPP::StreamTransformationFilter::PKCS_PADDING));
}
catch (CryptoPP::Exception&)
{ }
}
但我仍然得到这些填充字节。我究竟做错了什么?有人能帮帮我吗?
答案 0 :(得分:1)