我使用Botan库进行加密,我的加密代码如下所示。
LibraryInitializer init;
AutoSeeded_RNG rng;
string passphrase="mypassword";
PBKDF* pbkdf = get_pbkdf("PBKDF2(SHA-256)");
SecureVector<byte> salt = rng.random_vec(16);
InitializationVector iv(rng,16);
OctetString aes256_key = pbkdf->derive_key(32, passphrase,&salt[0], salt.size(), 10000 );
cout<<"Encryption key : " << aes256_key.as_string() <<endl ;
ifstream infile ("readme.txt");
ofstream outfile ("encrypt.txt");
Pipe pipe(get_cipher("AES-256/EAX", aes256_key,iv, ENCRYPTION) );
pipe.start_msg();
infile>>pipe;
pipe.end_msg();
SecureVector<byte> cl = pipe.read_all();
outfile.write((const char*)cl.begin(), cl.size());
outfile.flush();
outfile.close();
infile.close();
此代码看起来效果很好并加密输入文件。我发布此代码以确定加密中是否存在错误。 (但我认为加密是正确完成的)
现在尝试使用以下代码解密上述加密文件。
ifstream infile2 ("encrypt.txt");
ofstream outfile2 ("decrypt.txt");
Pipe pipe2 (get_cipher("AES-256/EAX", aes256_key, iv, DECRYPTION) );
pipe2.start_msg();
infile2 >> pipe2;
pipe2.end_msg();
SecureVector<byte> cl2 = pipe2.read_all();
outfile2.write((const char*)cl2.begin(), cl2.size());
outfile2.close();
infile2.close();
}
上面生成的解密密钥相同,InitializationVector iv
用于解密。
解密会引发异常AES-256/EAX : message authentication failed
我在这里做错了什么以及如何正确解密上述加密文件。
答案 0 :(得分:3)
问题是ifstream
和ofstream
假设字符输出。如果将其配置为使用std::ios::binary
作为第二个参数来处理二进制文件,那么您的代码应该没问题。如果它也没有明确编码密文,那么Botan API参考也会使用它。