0
votes
2answers
153 views

Incompatible AES implementation between Botan and phpseclib

I'm using Botan library for AES encryption/decryption in C++. I cannot use the output of Botan in phpseclib with accurate results. I would appreciate if someone points me a working code for ...
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 ...
1
vote
1answer
355 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 ...
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
270 views

BigInt conversion (gmp Bigint to botan bigint)

I am using gmp to perform complex operation. I want to use Botan to perform cryptography functions. Problem is Both of them have their own Bigint funtion. So its creating problem on supplying bigint ...
2
votes
3answers
2k views

How to compile the Botan crypto library as a static lib in VC++?

I've been extremely unsuccessful in compiling Botan as a static library in Visual C++. The build.h file contains the following code: #ifndef BOTAN_DLL #define BOTAN_DLL __declspec(dllexport) #endif ...