Tagged Questions
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
137 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
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
195 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
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
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
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
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
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
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
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 ...
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
2answers
951 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 my_key.public.pem ...
1
vote
2answers
265 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_init() failed. So I ...
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
30 views
python_d 2.7 will not load __m2crypto_d.pyd
I've built python 2.7 debug with MSVC 2008 to debug a script that imports M2Crypto. When I run my script, python_d correctly creates a Python_Eggs cache, and copies both the __m2crypto.pyd and ...
0
votes
0answers
25 views
Python M2Crypto DLLs load failed, The specified module could not be found
I'm trying to use this slice for my web2py app
http://www.web2pyslices.com/slices/take_slice/106
i installed the module M2Crypto and followed the slice, when loading the page i receive this error
...
0
votes
1answer
33 views
importing m2crypto to google app engine
Hey, I'm having a bit of trouble importing m2crypto to google app engine. I think I know the problem but don't know how to fix it. Anyway, here's my directory structure.
mysite/
app.yaml
...
0
votes
0answers
22 views
FTPS using M2Crypto, LIST works but not PUT
With LFTP, it works.
foo:~# lftp
lftp :~> set ftp:ssl-force true
lftp :~> connect host
lftp host:~> login username
Password:
lftp host:~> set ftp:ssl-protect-data true
lftp host:~> put ...