0
votes
0answers
78 views

Botan AES decryption failure

I´ve just discovered Botan and I'm trying to write a simple test application that encrypts and then decrypts a string using AES. This is the sample code I'm using: #include <iostream> #include ...
0
votes
1answer
154 views

How to check if entered password is correct in botan encryption

I'm have a code to encrypt and decrypt file, the code works good, but the problem is when i try to decrypt a file with a incorrect password, instead of given an error, the decryption is performed ...
0
votes
1answer
166 views

Output Botan Encryption results to a QDomDocument and vice-verca

So I'm using the Botan library for encryption within Qt. I have it working to where I can encrypt and decrypt from one file to another, but I'm trying to alter it to encrypt from a file to a ...
0
votes
1answer
227 views

How to use Botan Amalgamation files and VS2008

Clean install of Windows XP SP3 Install Python 2.7.2 Extract Botan 1.10.1 to the desktop Run configure.py --cc=msvc --disable-shared --gen-amalgamation Copy botan_all.h and botan_all.cpp to my dev ...
4
votes
1answer
259 views

What is an s2k algorithm?

What is the definition of an s2k algorithm? For example, "PBKDF2(SHA-1)" is an s2k algorithm. Here is some Botan code that refers to s2k: AutoSeeded_RNG rng; std::auto_ptr<S2K> ...