Tagged Questions
-1
votes
1answer
291 views
How to perform asymmetric encryption with Botan
I'm using Botan to generate hash, perform encryption with aes 256 and now i want to perform asymmetric encryption with that. Reading this page: http://botan.randombit.net/pubkey.html
I created a code ...
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
251 views
How to get encryption/decryption progress when encrypt big files with botan in Qt
I have the code below to encrypt and decrypt file with botan in Qt.
When encrypt big files it spend a lot of time, and i want to get the number of processed bytes when encrypting/decrypting big files. ...
0
votes
1answer
129 views
Convert Botan SHA256 output to base64 to match .NET SHA256Managed().ComputeHash()
I'm porting a portion of a .NET application to Qt on Linux. I am trying to replicate the results of a .NET function to create the SHA-256 hash of a password + salt. The .NET code is
return new ...
0
votes
2answers
169 views
QString to const byte* conversion
I'm trying to use the Botan library to create a SHA-256 hash of a couple QStrings - a password and a salt. I have made many attempts trying to get a concatenated salt+password into the correct type ...
1
vote
1answer
356 views
Botan tutorials or examples for creating the SHA-256 hash of a password
I'm porting a portion of a .NET application to Qt on Linux. I am trying to replicate the results of a .NET function to create the SHA-256 hash of a password + salt. The .NET code is
return new ...
0
votes
1answer
329 views
Trouble using Botan with Qt
I am using Qt and I am trying to use Botan. Everything seemed to go well, but when I go:
Botan::BigInt myInt;
In my constructor it works fine, but on the other hand if I go:
Botan::AutoSeeded_RNG ...
1
vote
2answers
176 views
Error while compiling botan sample example in Qt
I am trying to find out the error for two days but still haven't got this unknown reason figure out.
I have configured and compiled Botan library. Everything goes ok but when try to write this ...
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 ...
1
vote
1answer
544 views
Qt does not work with Botan_v1.10.1 Libraries
I've been trying to get Qt 4.7.3 to work with the newest Botan v1.10.1 libraries.
There is a Botan binary for Windows but it seems that the *.dll files are only for MS Visual Studio.
So I tried to ...
0
votes
1answer
464 views
Problem statically linking to Botan on Windows using MSVC
I am trying to statically link a Qt library I am building to Botan using MSVC on Windows and am receiving the following error.
..\..\3rdparty\temp\botan-msvc\build\include\botan/secmem.h(129) : error ...
5
votes
1answer
659 views
Modifications to LGPL code, am I documenting it correctly?
I'm using a modified version of Botan from the Qt Creator 2.0 sources. The standard Botan distribution is under a FreeBSD license, and Qt Creator 2.0 is under LGPL (which means that version of Botan ...