使用Botan和Qt加密文件时出错

时间:2014-01-01 22:59:26

标签: c++ qt cryptography botan

我正在尝试使用“Botan”来加密和解密文件(AES 256)。在Qt中集成库已成功完成。我按照我在互联网上找到的许多例子tutorial,但我得到了以下

error: 
class Botan::S2K' has no member named 'set_iterations'

我发现创建教程的Botan版本已经过时,而且我使用的版本(1.10.5)不兼容。

我的问题是:
我在哪里可以找到新版本的教程?如果不存在,我在哪里可以下载以前版本(1.8或1.9)的Windows安装程序?

到目前为止,这是我的代码: (加密)

string file = "...";
string fileEncrypted = "...";

Botan::LibraryInitializer init;

string passphrase = "password";
AutoSeeded_RNG rng;
S2K* s2k = get_s2k("PBKDF2(SHA-256)");
s2k->set_iterations(4049);

SecureVector<byte> key_and_IV = s2k->derive_key(48, passphrase).bits_of();
SymmetricKey key(key_and_IV, 32);
InitializationVector iv(key_and_IV +32, 16);

std::ifstream in(file, std::ios::binary);
std::ofstream out(fileEncrypted, std::ios::binary);

Pipe pipe(get_cipher("AES-256/CBC", key, iv,ENCRYPTION),new DataSink_Stream(out));
pipe.start_msg();
in >> pipe;
pipe.end_msg();

1 个答案:

答案 0 :(得分:0)

您可以从here获取版本1.9,但我担心您在使用新版本时会遇到两个问题:

  • get_s2k()已过时,您应该使用get_pbkdf()代替。

  • 使用PBKDF而不是弃用的S2k时,您可以将迭代次数传递给版本中的derive_key,而不是使用mutator方法设置迭代。

例如,参见他们的encrypt2示例:

...
PKCS5_PBKDF2 pbkdf2(new HMAC(new SHA_160));

const u32bit PBKDF2_ITERATIONS = 8192;

SecureVector<byte> salt(8);
rng.randomize(&salt[0], salt.size());

SecureVector<byte> master_key = pbkdf2.derive_key(48, passphrase,
                                                 &salt[0], salt.size(),
                                                 PBKDF2_ITERATIONS).bits_of()
...

您可以在获取其版本并将其解压缩后查看doc/examples文件夹中的详细信息。