解密后'message hash或MAC无效'异常

时间:2015-06-19 10:58:44

标签: c++ encryption cryptography crypto++

我正在尝试使用crypto ++库创建一个加密文件(.jpg和.avi)的程序。我的目标是制作一个使用AES-256成功加密视频文件的程序。

我从here做了AES加密的文本示例,并且它们成功运行(意味着库已正确设置)。但是,以下简单代码会生成异常

HashVerificationFilter: message hash or MAC not valid

代码:

AutoSeededRandomPool prng;

SecByteBlock key(AES::DEFAULT_KEYLENGTH);
prng.GenerateBlock(key, key.size());

SecByteBlock iv(AES::BLOCKSIZE);
prng.GenerateBlock(iv, iv.size());

string ofilename = "testimage.png";
string efilename;
string rfilename = "testimagerecovered.png";

try
{

    GCM< AES >::Encryption e;
    e.SetKeyWithIV(key, key.size(), iv, iv.size());

    ifstream ofile(ofilename.c_str(), ios::binary);
    ofile.seekg(0, ios_base::beg);

    FileSource fs1(ofilename.c_str(), true,
            new AuthenticatedEncryptionFilter(e,
                    new StringSink(efilename)));

    GCM< AES >::Decryption d2;
    d2.SetKeyWithIV(key, key.size(), iv, sizeof(iv));

    StringSource fs2(efilename, true,
            new AuthenticatedDecryptionFilter( d2,
                    new FileSink (rfilename.c_str()),
                    AuthenticatedDecryptionFilter::THROW_EXCEPTION));
}
catch(const Exception &e)
{
    cerr << e.what() << endl;
    exit(1);
}

return 0;

我怀疑我没有正确实施AES算法。但是,过去两天我无法找到解决方案。我在Ubuntu 14.04上使用Eclipse Luna。

PS我已经完成了以下答案

How to read an image to a string for encrypting Crypto++

How to loop over Blowfish Crypto++

1 个答案:

答案 0 :(得分:3)

当您尝试设置iv.size()时,请使用sizeof(iv)而不是d2.SetKeyWithIV,就像您对e.SetKeyWithIV所做的那样。 因为在此程序中,iv.size()的值为16,但sizeof(iv)为24.然后它将起作用。

GCM< AES >::Decryption d2;
d2.SetKeyWithIV(key, key.size(), iv, iv.size()); //here was a misuse of sizeof(iv)

StringSource fs2(efilename, true,
        new AuthenticatedDecryptionFilter( d2,
                new FileSink (rfilename.c_str()),
                AuthenticatedDecryptionFilter::THROW_EXCEPTION));

通过我的测试的代码如上所述。