Tagged Questions
5
votes
1answer
459 views
4
votes
2answers
395 views
Why are Crypto++ and Ruby generating slightly different SHA-1 hashes?
I'm using two different libraries to generate a SHA-1 hash for use in file validation - an older version of the Crypto++ library and the Digest::SHA1 class implemented by Ruby. While I've seen other ...
3
votes
5answers
147 views
Advice about the Encryption Method I should Use
Ok, so I need some advice on which encryption method I should use for my current project. All the questions about this subject on here are to do with networking and passing encrypted data from one ...
3
votes
1answer
628 views
Generated encrypted string does not have same size in PyCrypto and Crypto++
I recently used a Python script to encrypt a string. But could not decrypt it in C++ using Crypto++. I just compared generated encrypted strings and found they are not the same. Anybody can help?
...
3
votes
3answers
2k views
Using Crypto++ generated RSA keys on OpenSSL
Is there a way to use the RSA keys I've generated with the Crypto++ API in OpenSSL? What I am looking for is a way to store the keys in a format that both Crypto++ and OpenSSL can easily open them.
...
2
votes
2answers
905 views
Can anybody give me a working example of generating a SHA256 hash in C++ with Crypto++, taking a string as input and outputting a string?
I need an example of how to use Crypto++ to generate a SHA256 hash from a std::string and output a std::string. I can't seem to figure it out. Everything I've tried gives me invalid output.
Here's ...
2
votes
1answer
211 views
How can one parse a ZIP file using Crypto++?
Crypto++ includes
DEFLATE (RFC 1951) compression/decompression with gzip (RFC 1952) and zlib (RFC 1950) format support
, but I'm not sure how I could translate that into reading a ZIP file. (I'm ...
2
votes
2answers
322 views
Using cryptographic streams in C++
I'd like to use some cryptographic operations (mainly integrty check hashsums). However I have problems with finding documentations of doing operations of such form:
bool read(std::istream &in) {
...
2
votes
2answers
844 views
How to decrypt string data in C++ with Crypto++ where the original string encrypted in Python with pyCrypto
I've just encrypted a data string with pyCrypto easily, but don't know how to decrypt it in crypto++. Anybody can help with a sample decryption code in C++ with crypto++?
Here is my python code:
key ...
1
vote
1answer
84 views
Send C# AES encrypted string to CyptoPP C++ program to decrypt
I'm trying to send an encrypted string via a tcp connection from a C# program to a C++ program. The c++ program crashes in crypto++ when it tries to decrypt the string. I can see in the debugger the ...
1
vote
0answers
127 views
Using CryptoPP::Base64Encoder on binary data (ciphertext)
I have an issue using CryptoPP. I'm using AES, and am wanting to represent the binary ciphertext by encoding it to base64.
My problem is that I am randomly getting assertion errors when running the ...
1
vote
2answers
99 views
How can I return a byte value in Crypto++?
I'm using Crypto++ to encrypt string with AES.
Ok it works fine, but now I want to create a function that return a byte value that is the key.
byte AESBest::gen_key(){
AutoSeededRandomPool prng;
byte ...
1
vote
1answer
352 views
C++ Crypto++ Code::blocks Undefined reference problem
I'm trying to create a C++ program using Crypto++ (with Code::Blocks), but keep getting stuck with the same problem. I'm using a cut-down version of this code : ...
1
vote
1answer
237 views
How can I build the 64-bit version of the Crypto++ dll?
I'm currently working on implementing the crypto++ libs into a c# app. It's all working fine in 32 bit.
However when I tried to build the c++ DLL in 64 bit, I got this error:
Error 1 error ...
1
vote
3answers
471 views
aes256 results differ in C# (Windows) and C++ (Ubuntu) implementation
Here are the codes for aes256 with cbc and pkcs7 padding (and a password) encryption on C (Windows and C++ (Ubuntu using libcrypto++). The encryption result is not the same. Why?
C#:
using System;
...
1
vote
2answers
577 views
Incorrect key size in PHP mcrypt when porting CryptoPP AES encryption to PHP's mcrypt
Earlier I managed to port some C++ CryptoPP Rijndael_128 CBC code to MCrypt PHP, but now I'm having problems with CFB mode. The C++ and PHP results do not match (well the first byte matches but this ...
1
vote
2answers
174 views
Getting random output from Crypto++
Can't figure out why I am getting seemingly random output from the Crypto++ RC2 decoder. The input is always the same, but the output is always different.
const char * cipher ...
1
vote
1answer
511 views
C++ writing/reading hex values correctly (CryptoPP)
I am trying to run a program, that encrypts and decrypts using AES.
(from http://www.codeproject.com/KB/security/AESProductKey.aspx )
// From aestest1.cpp
// Runtime Includes
#include ...
1
vote
3answers
896 views
How do I decrypt a file with Crypto++ that was encrypted with C#
I would like to decrypt a file that I previously encrypted with C# using the TripleDESCryptoServiceProvider.
Here's my code for encrypting:
private static void EncryptData(MemoryStream ...
1
vote
1answer
492 views
crypto++ RSA and “invalid ciphertext”
Well, I've been going through my personal hell these days
I am having some trouble decrypting a message that was encrypted using
RSA and I'm always failing with a "RSA/OAEP-MGF1(SHA-1): invalid
...
0
votes
1answer
22 views
valgrind: Disrupting crypto++ zlib test
I am getting a strange error with valgrind on a program that makes use of Crypto++'s zlib functions:
vex x86->IR: unhandled instruction bytes: 0xC5 0xF9 0x6E 0x45
==8605== valgrind: Unrecognised ...
0
votes
0answers
51 views
Code from crypto++ to Botan
I am doing some benchmark testing, would like to convert the following to functions from crypto++ to Botan crypto library:
BlockTransformation *blckt = new AES::Encryption(reinterpret_cast<byte ...
0
votes
0answers
66 views
Different programs calling the same function with same input, but having different output?
I am trying to work on s3fs, a FUSE-based file system to backup data in Amazon cloud side. In my implementation, I developed two functions using AES:CBC in crypto++ to encrypt and decrypt data in a ...
0
votes
0answers
16 views
How to check if any other crypto callback is set?
According to this blog
point Solution A) Beware of other libraries in your locking callback implementation
We should check if another callback is set if not then only set the callback.
But how to ...
0
votes
2answers
35 views
Put in a string the output of autoseed PNRG in Crypto++
I'm using Cryptopp to generate a random string.
This is the code:
const unsigned int BLOCKSIZE = 16 * 8;
byte pcbScratch[ BLOCKSIZE ];
// Construction
// Using a ANSI approved Cipher
...
0
votes
1answer
42 views
How to configure Crypto++ in Eclipse?
I want to use Crypto++ in Eclipse.
I've installed it correctly but I dunno why it cannot find the path.
using namespace CryptoPP;
Symbol CryptoPP cannot be resolved
and if I use #include "aes.h", ...
0
votes
1answer
61 views
where can i find source code for libcrypto++?
I am using libcrypto++ for aes encryption. I would like to add in my code the methods: EVP_CipherInit_ex(), EVP_CipherUpdate(), EVP_CipherFinal_ex(). Where can I find this source codes?
thx. ...
0
votes
0answers
50 views
error encryption mcryto and libcrypto++
I am testing a code encryption with mcrypto. The results are not the same with the encrypted text that i obtain using libcrypto. The correct result is in libcrypto. What is wrong with mcrypto?
Need ...
0
votes
1answer
51 views
where can i find the implementation for EVP_CipherInit_ex / EVP_CipherUpdate / EVP_CipherFinal_ex
I am using libcrypto /openssl for encription. i would like to ask where can i find these methods. I need them because i would like to add these methods in my code. i don;t need dependencies like using ...
0
votes
1answer
142 views
crypto++ library error : undefined reference to `EVP_CIPHER_CTX_init'undefined reference to `EVP_CIPHER_CTX_init'
I am using crypto++ in my code. I don't want to use its dependencies so i've tried to import crypto++ files in my folder and include them in my .cpp file
I have the followng errors:
...
0
votes
2answers
521 views
How do I install Crypto++ in Visual Studio 2010 Windows 7?
I downloaded http://www.cryptopp.com/#download 5.6.1 and have no clue that to do at this point. I am a total noob and need good instructions. thanks.
0
votes
1answer
127 views
crypto++ Base64Decode: How to get the data
This seems like it would be an easy question, but crypto++ seems to be designed in a funky, "as obtuse as possible" sorta way, so I'm wondering...
How can I get the binary data out of the ...
0
votes
2answers
593 views
Error compiling in release mode but not in debug mode
When I compile on VS 2008 in deubg mode everything works fine.
When I compile the same thing in release mode not everything works. As far as I can tell the include directories are the same and there ...
0
votes
2answers
828 views
QT and CryptoPP: Converting QString/QChar to be accepted with CryptoPP
I want to make program that encrypts (later decrypts) user inputted string.
Here is beginning for encryption:
QString getData = ui->text->toPlainText(); //Data to process
std::string output; ...
0
votes
2answers
604 views
Can anyone explain why my crypto++ decrypted file is 16 bytes short?
In order that I might feed AES encrypted text as an std::istream to a parser component I am trying to create a std::streambuf implementation wrapping the vanilla crypto++ encryption/decryption.
The ...
0
votes
2answers
639 views
I'm using Crypto++ for RSA encryption. My plain text exceeds FixedMaxPlaintextLength. What should I do?
Should I break the text into chunks?
Is RSA the wrong encryption scheme?
0
votes
1answer
509 views
Java and C++ Cryptography interoperability
I have a message coming from an external company which has been encrypted with our public key using Java.
Specifically the java code performing the encryption is -
//get instance of cipher using ...
0
votes
2answers
529 views
Given filename, how can I get the Adler32 using Crypto++
Given a "string filename", how can I get the Adler32 checksum using the C++ Crypto++ library. I am a little confused about using their FileSource and Sink system. Below I have the skeleton of the code ...