Tagged Questions
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
1answer
1k views
What is the size of a RSA signature in bytes?
I'm currently using Crypto++ to generate a signature for a block of data. I expected the signature to be 20 bytes ( SHA 1 Hash) , as my understanding was that the signature is just an encrypted hash. ...
0
votes
1answer
55 views
RSA decrypting Crypto++ generated message in PHP
I have generated a public/private keypair with Crypto++, and I encode a password on the client side with Crypto++ (RSAES_OAEP_SHA_Encryptor), then I base64 encode it. Now I'd like to decode it in the ...
0
votes
1answer
41 views
What difference does key length make when signing a file?
I've never taken any classes on encryption or security and I'm trying to teach myself some basics, so forgive me if this is a silly question (don't worry, I'm not working on anything sensitive)
So, ...
0
votes
2answers
1k views
How to decrypt a string on OpenSSL that was previously encrypted via Crypto++?
EDIT: I found out that the keys aren't the problem like I said in the comments. I can use them without any issues to encrypt and decrypt data on OpenSSL.
But I need to decrypt a string on OpenSSL ...
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?