Botan is a BSD-licensed crypto library for C++ applications. It provides access to most major cryptographic algorithms.
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 ...
1
vote
1answer
128 views
Compatibility of a secure signature algorithm
After some research it would seem that RSA with PSS padding is suggested to be used as its security properties are known to be good. The problem is that it is hard to have compatibility of signing ...
0
votes
2answers
155 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 ...
-1
votes
1answer
294 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 ...
1
vote
1answer
131 views
Build Botan library for Android
How can I build the cryptographic library Botan for Android? I am using Mac OS 10.7 and Eclipse IDE.
3
votes
1answer
134 views
Why are these Botan public keys so similar?
I am using Botan to create public/private ECDSA keypairs. The public keys that are generated (even on different machines using this code) are very similar... too similar to consider safe I would ...
1
vote
1answer
276 views
Botan AES-256, 32 bit InitialVector
I currently have some code that works correctly with the LibTomCrypt libraries, but not with Botan (I am trying to convert it over to Botan).
My (working) LibTomCrypt code:
// read the initial ...
1
vote
3answers
334 views
Unhandled exception in botan.dll
I am trying to run the most basic program with botan crypto library. I am using Botan 1.10 32bit. I got the binaries with their installer on Windows 7. IDE is Visual studio 2012.
I linked my project ...
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
0answers
50 views
compiling botan for mingw
Compiling botan for mingw
I've run nmake to compile botan but I get this error:
/ld.exe: cannot find -ladvapi32.lib
collect2: ld returned 1 exit status
NMAKE : fatal error U1077: ...
0
votes
1answer
4k views
“Undefined reference” when accessing my shared library using JNI
I'm trying to build a version of Botan (library for cryptographic algorithms) using JNI to run a few native C++ programmes on Android.
I've managed to create a libbotan.so without any errors using the ...
0
votes
1answer
130 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
170 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
149 views
Undefined reference to `vtable for…with RTTI support
I created an application that uses RTTI support for dynamic_cast. I added "APP_CPPFLAGS += -frtti" in Application.mk file but i get the error: "undefined reference to `vtable for...". If i don't use ...
1
vote
2answers
177 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 ...
2
votes
1answer
108 views
Botan PK_Signer
I am trying to just initialize a PK_Signer object, which seems to be giving me much more problems then Botan version 1.8.10. I am currently using Botan's latest stable release (1.10), and I am having ...
0
votes
1answer
333 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 ...
0
votes
1answer
100 views
How can I compute another bit pattern with identical SHA-160 sum?
I want to test my application when it gets tricked by a false passed SHA-160 sum and thus would like to compute a change to the data being summed which results in the original SHA-160 sum again and ...
7
votes
3answers
3k views
swprintf and vswprintf not declared?
I am trying to compile Botan on Windows with MinGW, and am receiving the following error during compilation:
c:\qt\2010.04\mingw\bin\../lib/gcc/mingw32/4.4.0/include/c++/cwchar:159: error:
...
0
votes
1answer
177 views
Compiling Botan 1.10.1: undefined namespaces
Just switched from Botan 1.4 to Botan 1.10. Configure, make and install worked fine on my Mac (OSX10.6).
But trying to use the lib
#include <stdio.h>
#include <stdlib.h>
#include ...
0
votes
2answers
313 views
Python Base64 string shorter than Botan Base64 string
I've managed to get AES/Rijndael [256bit key / 128bit block size] symmetric encryption working: encrypt with pycrypto and decrypting with Botan in C++.
However, when I try to base64 encode the ...
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
378 views
Botan c++ hash function generate_bcrypt()
I am trying to get hash of password using Botan's function generate_bcrypt().
I read manual http://botan.randombit.net/passhash.html here. Afterwards I have read it yet once.
Source code:
...
0
votes
1answer
493 views
How to make Botan RSA signature verification match that of PyCrypto
I'm developing a key generator that generates RSA signatures that
are to be downloaded to the clients computer.
In the clients computer i would like to use a RSA signature and a
public key to ...
1
vote
1answer
400 views
Issue Compiling Botan Using MinGW in Windows7 64bit
I am trying to install the non-MSVC version of Botan to my environment. I downloaded the tarball, extracted the files, and ran configure.py
After running configure.py, I run make, make fails with a ...
1
vote
1answer
547 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
189 views
Using XTS algorithm within Botan library for encryption/decryption
The Botan library (botan.randombit.net/) has a number of algorithms for encryption/decryption. I am interested in using the XTS algorithm for encryption/decryption that is available within Botan. ...
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 ...
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
...
0
votes
3answers
369 views
How to debug Cygwin failure?
I am porting from Centos to Cygwin and find that my application is exiting with no error message and exit status zero mid execution during the constructor for Botan::InitializationVector.
If I try to ...
0
votes
1answer
271 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 ...
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 ...
1
vote
2answers
314 views
Method to send an encryption key over an insecure connection?
I am using Botan utility to perform encryption. When I initialize my connection to a remote machine using SSH, I am able to trade keys over the secure SSH connection. However, sometimes I use inetd to ...
0
votes
1answer
817 views
Building NetSieben's SSH Lib for C++
I have trying to build this library for quite a while and I am somewhat confused. I found it recommended on Stack Overflow (http://www.netsieben.com/products/ssh/index.phtml) but it only comes in ...
5
votes
1answer
662 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 ...
2
votes
1answer
249 views
Botan::SecureVector - Destructor called in Constructor?
When using the Botan::SecureVector in the following unit test:
void UnitTest()
{
std::vector<byte> vbData;
vbData.push_back(0x04);
vbData.push_back(0x04);
...
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> ...
4
votes
1answer
724 views
What C++ templates issue is going on with this error?
Running gcc v3.4.6 on the Botan v1.8.8 I get the following compile time error building my application after successfully building Botan and running its self test:
...
