Tagged Questions

2
votes
1answer
199 views

Decrypt in Python an encrypted message in Java

I'm trying to decrypt in Python (with M2Crypto) an encrypted message generated in Java with this library My code (which I actually found here) works decrypting messages encrypted by itself, but not ...
2
votes
2answers
466 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
1answer
627 views

java to python conversion: x509 / dsa / sha1withdsa crypto howto?

I've got the following Java code that I'm trying to convert to python, and I'm not really sure how to do this: import java.security.spec.X509EncodedKeySpec; import java.security.KeyFactory; import ...
0
votes
1answer
188 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
628 views

Why can't Bouncycastle's PEMReader read this M2Crypto-generated PEM?

I use the following Python code, using M2Crypto, to generate an RSA key pair in PEM format: bio = BIO.MemoryBuffer() key_pair = RSA.gen_key(1024, 65537) key_pair.save_key_bio(bio, cipher=None) return ...