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. ...
1
vote
1answer
385 views

How to decrypt PKCS8 DER encrypted private key using the password, in crypto++

I'm trying to sign a message using a private key that is encrypted, I of course have the password to it, so I'm trying to decrypt the key so I can the use it to sign. I'm using C++ library crypto++, ...
1
vote
1answer
596 views

verify data signature generated with openssl, using crypto++

I have a server, running under python, signing a message sha256 digest using m2crypto I use a public and private RSA key generated by openssl CLI. On the server side everythgin is OK Python code : ...
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 ...