Tagged Questions

1
vote
1answer
29 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 decr …
0
votes
1answer
53 views

How to sign a document in python with M2Crypto using particular padding technique?

I need to digitally sign some text in python using a private key stored in a .pem file. It seems like M2Crypto is the preferred way to do that these days, so that's what I'm using …
0
votes
1answer
37 views

How to disable URL redirection in Python when using M2Crypto SSL?

This is what my code looks like: url_object = urlparse(url) hostname = url_object.hostname port = url_object.port uri = url_object.path if url_object.path else '/' ctx = SSL.Cont …
0
votes
1answer
56 views

How do you verify an RSA SHA1 signature in pyOpenSSL

Hi, I tried installing M2Crypto and facing problems. I don't want to force my customers to use such libraries which are difficult to install. So, I thought I would give pyOpenSSL …
0
votes
1answer
156 views

How to use .pem file with Python M2Crypto

To generate an RSA key pair I used openssl: openssl genrsa -out my_key.private.pem 1024 openssl rsa -in my_key.private.pem -pubout -out my_key.public.pem Now I want to use this …
1
vote
1answer
152 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.K …
0
votes
3answers
403 views

M2Crypto Encrypt/Decrypt using AES256

Can someone provide me code to encrypt / decrypt using m2crypto aes256 CBC using Python
0
votes
2answers
53 views

file accessing in load_pub_key

Consider the code: fileHandle = open ( 'test8.pem','w' ) fileHandle.write (data) pub_key = M2Crypto.RSA.load_pub_key(open('test8.pem')) Error coming like : File "/usr/lib/pyt …
1
vote
1answer
372 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) ..+........+++++++++++++++++++++++++++ …
1
vote
3answers
62 views

Python M2Crypto EC Support

M2Crypto provides EC support for ECDSA/ECDH. I have installed OpenSSL 0.9.8i which contains support for EC. However when I run "from M2Crypto import EC,BIO" I get error saying EC_i …
0
votes
1answer
723 views

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

Hi all, 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 co …
0
votes
1answer
39 views

m2crypto throws “TypeError: in method ‘x509_req_set_pubkey’”

Guys, my little code snippet throws the following Traceback: ..++++++++++++ ..++++++++++++ Traceback (most recent call last): File "csr.py", line 48, in <module> csr.c …