Tagged Questions

2
votes
2answers
325 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) { ...
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
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 = ...
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 ...
1
vote
2answers
845 views

Can I use RSACryptoServiceProvider public/private keys to interop with Crypto++?

I've created a public/private key using RSACryptoServiceProvider and saved it as XML. I can use this to encrypt/decrypt/sign and verify data in .NET. I have another application which is intended to ...
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
2answers
370 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
641 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
510 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 ...