Tagged Questions
M2Crypto is the most complete Python wrapper for OpenSSL featuring RSA, DSA, DH, HMACs, message digests, symmetric ciphers (including AES); SSL functionality to implement clients and servers; HTTPS extensions to Python's httplib, urllib, and xmlrpclib; unforgeable HMAC'ing AuthCookies for web session management; FTP/TLS client and server; S/MIME; ZServerSSL.
9
votes
4answers
268 views
_shutdown AttributeError (ignored) when linting code that uses M2Crypto
I'm running lint as follows:
$ python -m pylint.lint m2test.py
with this code:
import M2Crypto
def f():
M2Crypto.RSA.new_pub_key("").as_pem(cipher=None).split("\n")
The lint output ends ...
9
votes
3answers
2k views
How do I verify an SSL certificate in python?
I need to verify that a certificate was signed by my custom CA. Using OpenSSL command-line utilities this is easy to do:
# Custom CA file: ca-cert.pem
# Cert signed by above CA: bob.cert
$ openssl ...
5
votes
2answers
784 views
How do I install M2Crypto on Ubuntu?
I'm trying to build and install M2Crypto on Ubuntu 10.04 LTS. I downloaded and untarred M2Crypto-0.20.2.tar, and from the M2Crypto-0.20.2 directory I tried python setup.py build. I got an error ...
4
votes
1answer
306 views
M2crypto signature “algorithm”
These two codes provide the same signature, which is expected:
code1:
from M2Crypto import RSA, EVP
import base64, hashlib
text = "some text"
pkey = EVP.load_key("mykey.pem") #"mykey.pem" was ...
3
votes
3answers
136 views
How can I verify an X509 certificate in python including a CRL check?
I'm trying to verify an X509 certificate using python. In particular I need to check CRLs when I do it.
Now, you can use m2crypto to do this, but I can't find an option corresponding to openssl's ...
3
votes
1answer
186 views
Extract signing certs from a PKCS7 SignedData structure with m2crypto
I am trying to use M2Crypto to extract the signing certificates from a Windows PE file. According to the MS specification the data is stored in a PKCS#7 SignedData structure (stored in ASN.1 format, ...
3
votes
3answers
822 views
Installing M2Crypto on CentOS
I am trying to install M2Crypto on CentOS by compiling from the source.
i am doing a python setup.py build
But I get the following error,
/usr/local/lib/python2.6/distutils/dist.py:266: ...
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
1answer
553 views
Adding server certificate validation to httplib.HTTPSConnection
I've found that httplib.HTTPSConnection doesn't perform an automatic server certificate check. As far as I've understood the problem, I need to add that functionality manually, e.g. by subclassing ...
3
votes
2answers
737 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. ...
3
votes
7answers
2k views
How to generate SSH key pairs with Python
I'm attempting to write a script to generate SSH Identity key pairs for me.
from M2Crypto import RSA
key = RSA.gen_key(1024, 65337)
key.save_key("/tmp/my.key", cipher=None)
The file /tmp/my.key ...
2
votes
2answers
300 views
Loading a DER-encoded RSA key using M2Crypto
The method M2Crypto.RSA.RSA().save_key_der() can be used to save a key in the DER format. However, I do not see a corresponding method M2Crypto.RSA.load_key_der() as I would expect.
Is there a way to ...
2
votes
1answer
545 views
m2crypto: python 2.7 compatibility and which version of OpenSSL to use?
We've been using M2crypto with Python 2.6 for Windows (32-bit) for some time with great success. We used one of the user contributed setups to install M2crypto in our development environments. We ...
2
votes
1answer
248 views
2
votes
2answers
356 views
Timestamp server rfc3161 response token generation in Python
I'm trying to implement tsa server on python using twisted. Currently I'm using openssl binary to generate response, but this seems ugly to me, that's why I'm trying to figure out how to make response ...
2
votes
6answers
1k views
Need help using M2Crypto.Engine to access USB Token
I am using M2Crypto-0.20.2. I want to use engine_pkcs11 from the OpenSC project and the Aladdin PKI client for token based authentication making xmlrpc calls over ssl.
from M2Crypto import Engine
...
2
votes
1answer
163 views
What is the difference between M2Crypto's set_client_CA_list_from_file() and load_verify_info() and when would you use each?
The M2Crypto library has a few CA-related functions on its SSL.Context object, but the documentation is very unclear as to when you would use certain functions and why. In fact, the docs for almost ...
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 ...
2
votes
3answers
2k views
M2Crypto Encrypt/Decrypt using AES256
Can someone provide me code to encrypt / decrypt using m2crypto aes256 CBC using Python
1
vote
1answer
25 views
RSACryptoServiceProvider message signature verification with m2crypto
I have got a message signed with .Net RSACryptoServiceProvider, the message is then send to
Python software which tries to verify the sign with m2crypto (openssl-based lib).
I've got public cert that ...
1
vote
1answer
51 views
Usage of M2Crypto package
I want to encrypt the communication between a LabView and a Python code. I did some preliminary research and I found the AES library for LabView. The M2Crypto module supports AES.
My question is if ...
1
vote
1answer
54 views
64bit centos m2crypto crash during load_key
I'm trying to run m2crypto on 64 bit centos 5.6 and/or rhel 5.6. I've compiled python 2.6 and placed into a separate directory (necessary on centos/rhel). I've tried compiling m2crypto against the ...
1
vote
1answer
167 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 ...
1
vote
1answer
194 views
Create self signed SSL certificates in Python
I am trying to generate self signed SSL certificates using Python, so that it is platform independent. My target is the *.pem format.
I found this script that generates certificates, but no ...
1
vote
1answer
271 views
How to get back a signed string (e.g. md5 hash) using a public-key (x509 certificate)
I'm very new with cryptographic and stuck for 2 days with this problem, I hope you can help me with.
I try to sign a md5 digest string with the private key of a X509 certificate. As far as I can see, ...
1
vote
0answers
183 views
How to generate strong one time session key to use with AES
I am using M2Crypto's AES for encrypting messages, but confused about how to generate a random session key and of what length. Does M2crypto provide any function for generating random keys?
1
vote
1answer
594 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 :
...
1
vote
1answer
160 views
SWIG build debugging tools/tips
I am trying to build M2Crypto 0.21.1 with OpenSSL 1.0.0c (or 0.9.7m) for Python 2.5.4 on windows, but SWIG is conspiring against me. I've tried both SWIG 2.0.1 and SWIG 1.3.40 and I get the same ...
1
vote
1answer
144 views
Accessing CSR extension stack in M2Crypto
I have a certificate signing request with an extension stack added. When building a certificate based on this request, I would like to be able to access that stack to use in creating the final ...
1
vote
0answers
206 views
Python M2crypto error
I am trying to build crda agent module on a cross platform(ARM).
To build the same, one of the input module is m2crypto shared object file.
I have successfully cross compiled and m2crypto.so file has ...
1
vote
1answer
246 views
What is the best way to encrypt stored data in web2py?
I need to encrypt data stored in web2py, more precisely passwords.
This is not about authentication, but more something in the line of a KeePass-like application.
I've seen that is included in ...
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
0answers
168 views
How can I properly sign x.509 certificates using a CA certificate in m2crypto?
I'm working on an automated CA for internal infrastructure that runs on Twisted Web and M2Crypto. The CA has its key. Other machines can send GET requests with the CSR as the body. Assuming things ...
1
vote
1answer
381 views
M2Crypto: verifying DSA signatures
I'm having trouble verifying DSA signatures using Python/M2Crypto. The signatures are generated in Java, using standard java.security.Signature class, with Sun's crypto provider and SHA1withDSA ...
1
vote
2answers
253 views
wrong behaviour of m2crypto compared to openssl
I have to consolidate and possibly rewrite a bunch of bash scripts that verify that incoming smime messages are valid (i.e. encrypted with company's private key and signed a certain set of public ...
1
vote
2answers
123 views
OpenSSL for HTTPS without a certificate
I'm looking to create an application in Django which will allow for each client to point their domain to my server. At this point, I would want their domain to be accessed via https protocol and have ...
1
vote
3answers
219 views
How do I create a M2Crypto DSA object given parameters and key values?
Using M2Crypto I'd like to create a DSA_pub object for verifying a DSA signature. I know q, p, g, and the public key, but the only way I know to instantiate a DSA object is using:
dsa = ...
1
vote
1answer
252 views
How to verify a signature using M2Crypto 0.16
After some goggling I found some usual answers for this question, like:
http://stackoverflow.com/questions/595114/how-to-load-an-rsa-key-from-a-pem-file-and-use-it-in-python-crypto
some code:
x509 = ...
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
557 views
M2Crypto RSA.gen_key - feed a password from Python code
RSA.gen_key function always asks for password when it's used to generate keys. Is there a way to feed it the password from the python code instead of typing it manually?
Thanks,
-R
1
vote
2answers
871 views
How to digitally sign a message with M2Crypto using the keys within a DER format certificate
I am working on a project to implement digital signatures of outgoing messages and decided to use M2Crypto for that.
I have a certificate (in DER format) from which I extract the keys to sign the ...
1
vote
1answer
599 views
M2Crypto: Override Post Connection Check of HostName
I am using M2Crypto 0.20.2 and python 2.4.3. I connect to the server with the fully qualified domain name. The common name in the server certificate does not use the FQDN so I get this error:
...
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
2answers
77 views
M2Crypto: API Question on Engine Class
The following 3 Engine methods require 'name' as an argument.
load_private_key(self, name, pin=None)
load_public_key(self, name, pin=None)
load_certificate(self, name)
What exactly is 'name'? From ...
1
vote
2answers
718 views
m2crypto custom certificate verification
I need to build an encrypted connection between two peers, and I need to authenticate both.
Both peers already share a fingerprint (SHA256 hash) of the other peer public key.
I'm not using X509 or ...
1
vote
2answers
705 views
What to put for a commonName when making an OpenSSL key?
I have an application application framework that works in a peer-to-peer manner between unnamed hosts on a network. I want to have the traffic be encrypted, so I've implemented a setup with M2Crypto, ...
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
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
708 views
How do you verify an RSA SHA1 signature in pyOpenSSL
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 a try. I am able to get ...