Tagged Questions

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
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. ...
1
vote
1answer
81 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
2answers
687 views

For the Diffie Helman prime and generator, what key length should I use?

In the code below, from the Crypto++ wiki, is 128 the number I really should be using? CryptoPP::AutoSeededRandomPool arngA; CryptoPP::RandomNumberGenerator& rngA = ...
0
votes
2answers
368 views

Crypto++ AES Decrypt how to?

There are next to no noob guides to crypto++ out there. Or none that I've found anyway. What I want to do is decrypt an array of uchars I generate with another AES encrypter. Where would I start? I ...
0
votes
2answers
602 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 ...