Tagged Questions
3
votes
2answers
452 views
AES encryption library compatible with Python 2.7 for Windows
Any recommendations on an AES encryption library that's compatible with Python 2.7 for Windows?
In the past we've used m2crypto with Python 2.6, but there's no version of m2crypto for Python 2.7 and ...
3
votes
2answers
740 views
How do I use m2crypto to validate a X509 certificate chain in a non-SSL setting
I'm trying to figure out how to, using m2crypto, validate the chain of trust from a public key version of a X509 certificate back to one of a set of known root CA's when the chain may be arbitrarily ...
3
votes
1answer
484 views
Where is Python support for PEM + RSA + DES3?
I need a Python library that supports PEM files and both RSA signing and DES3 encryption. pycrypto doesn't seem to support PEM, and its mechanism for loading existing keys is undocumented and cryptic. ...
1
vote
1answer
383 views
Generating SHA-256 hash in Python 2.4 using M2Crypto
Is it possible to generate a SHA-256 hash using M2Crypto? Python 2.4's SHA module doesn't support 256, so I started using PyCrypto, only to find out that PyCrypto doesn't support PKCS#5 (needed ...
1
vote
1answer
835 views
Using M2Crypto to save and load X509 certs in pem files
I would expect that if I have a X509 cert as an object in memory, saved it as a pem file, then loaded it back in, I would end up with the same cert I started with. This seems not to be the case ...
1
vote
2answers
682 views
How to verify ECDSA/SHA2 S-MIME signature with python?
We need to choose between two signature schemes:
RSA/SHA2 S-MIME signatures
ECDSA/SHA2 S-MIME signatures
For that our python software needs to support one of this scheme. Currently for some ...
1
vote
1answer
1k 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. I think I get ...
1
vote
1answer
616 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 ...
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
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
2answers
907 views
How to 3DES encrypt in Python using the M2Crypto wrapper?
I have a working test of a hardware device that uses RSA encryption, in Python using M2Crypto. Now I need to test a similar device that uses 3DES encryption. But I can't figure out how to use ...
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 ...