std :: string的解密有额外的填充字节?

时间:2017-04-26 10:52:51

标签: c++ aes crypto++ cbc-mode

我正在尝试解密在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&)
    { }
}

但我仍然得到这些填充字节。我究竟做错了什么?有人能帮帮我吗?

1 个答案:

答案 0 :(得分:1)

好的,最后我发现了我的愚蠢错误。它与填充字节无关。在我的解密结果中有这些额外字节的原因就是这样 StringSource将结果字节附加到目标。我忘了清除我的目标变量,所以它渐渐增长......