Tagged Questions

2
votes
2answers
453 views

Java to Python RSA

I'm trying to encrypt a string from Java to Python, using the library Bouncy Castle J2ME on the client side and Python M2Crypto on the other. Everything is pretty good, I can decrypt it properly, but ...
1
vote
2answers
684 views

Gen public key from xml data file using M2Crypto for signature verification

I have pub key in xml format: ...
1
vote
1answer
1k views

Python M2Crypto - generating a DSA key pair and separating public/private components

Could anybody explain what is the cause of the following: >>> from M2Crypto import DSA, BIO >>> dsa = DSA.gen_params(1024) ...
0
votes
1answer
53 views

Does M2Crypto's public_decrypt(block, padarg) perform decryption or verfication?

I got some Python code that seems to use a public key for decrypting data. The data is probably encrypted using the corresponding private key. (I am not sure about it, because encryption with ...
0
votes
0answers
219 views

How to decrypt on Unix data encrypted on Windows with a certificate?

I have data encrypted on Windows with a PFX certificate, using C# EnvelopedCms. I need to decrypt the data on Unix, e.g. using openssl or Python M2Crypto.X509. First I convert the cert from PFX to ...
0
votes
1answer
174 views

Help verifying RSA signed text with Python

Using Java I have created RSA keypairs. Using Java I can use these keys to sign and verify some text. I can also "export" these keys in PEM format and load them into a Python test script. Once in the ...
0
votes
1answer
251 views

M2Crypto, Encrypt and Sign at once?

This might be something obvious that I'm missing. I would like to have my host encrypt a message to a client using the client's public key, and also have that message signed using the hosts private ...
0
votes
1answer
3k views

How can I create a RSA public key in PEM format from an RSA modulus?

I have the modulus of an RSA public key. I want to use this public key with the Python library "M2Crypto", but it requires a public key in PEM format. Thus, I have to convert the RSA modulus to a ...