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 ...
0
votes
0answers
19 views
Building m2crypto: 7 unresolved externals
I've tried to build M2Crypto (github) for win-amd64-py3.3:
python setup.py build --compiler msvc
And I've got an linker's unresolved external symbol errors (full log):
C:\Program Files ...
0
votes
1answer
33 views
Unable to verify a signature in python using PKI
I am struggling to port the following java code to python. I am using PyCrypto to read the publickKey but it fails with an assertionError:
keyDER = b64decode(publicKeyBase64)
seq = asn1.DerSequence()
...
0
votes
0answers
18 views
openssl_private_encrypt in python
Is there any python equivalent for PHP 'openssl_private_encrypt'? what kind of encryption is happening with 'openssl_private_encrypt'?
please provide a sample python code for ...
0
votes
1answer
31 views
M2crypto compilation on aix
When compiling M2Crypto module on AIX5.1 with following scrambled command:
/opt/local/python/2.7.3/bin/python setup.py build_ext --swig /opt/local/swig/1.3.4/bin/swig -I ...
1
vote
0answers
105 views
Retrieve and validate x509 certificate chain
I am trying to determine the best way to retrieve and validate a chain of x509 certificates in Python.
If any certificates in the chain are invalid, I need to be able to identify which one ...
4
votes
2answers
158 views
How to get the signed content from a PKCS7 envelop with M2Crypto?
I need to get the digest of a PKCS#7 envelop to manually check it.
Usually when you want to validate the signature of a pkcs#7 envelop you do that:
from M2Crypto import SMIME, X509, BIO
sm_obj = ...
2
votes
2answers
66 views
Python - extract public key length in bits
My goal is to develop a python script to connect to a host and determine the Server Public key length in bits similar to running openssl
(openssl s_client -connect 10.18.254.29:443)
yada yada yada
...
0
votes
0answers
71 views
Python OpenSSL CRL creation with M2Crypto or public key extraction with pyOpenSSL
I am trying to write complete OpenSSL CA and certs generation functionality in Python, and I've had first almost successful try with pyOpenSSL, but I soon discovered, that it cant export (save) public ...
0
votes
0answers
73 views
Python XML-RPC HTTPS Forking Server gives SSLError
I've been running a Python multi-threaded XML-RPC HTTPS Server using the following example :
http://monitordatasink.googlecode.com/svn/trunk/SecureXMLRPCServer.py
Instead of OpenSSL M2Crypto version ...
10
votes
2answers
313 views
Trying to verify SHA1 message signature using Python. What am I doing wrong?
I'm attempting to verify the SHA1 signature of a message by downloading a certificate from a website and extracting its public key. There's a few bits of sample code elsewhere on SO (here and here), ...
0
votes
1answer
67 views
M2Crypto loading RSA key failed
I need urgent help with this annoying M2Crypto error:
In [126]: M2Crypto.EVP.load_key('private-key-2048.pem', 'r')
---------------------------------------------------------------------------
BIOError ...
1
vote
1answer
152 views
Porting AES code from M2Crypto to pycrypto
I want to convert some existing AES code from M2Crypto to the equivalent pycrypto but the documentation is thin, especially for M2Crypto. I have reduced the relevant code to a gist. The main issues ...
0
votes
1answer
59 views
pkcs11engine doesn't logout after engine cleanup()
I want to do the following:
Generate key pair on security token (I use Aladdin tokens) (PyKCS11)
Generate PKCS#10 request (I use M2Crypto + engine_pkcs11 for it) and send it to CA.
Receive signed ...
0
votes
1answer
466 views
Implement OpenSSL AES Encryption in Python
I'm trying to implement the following in Python:
openssl enc -e -aes-256-cbc -base64 -k "Secret Passphrase" -in plaintext.txt -out ciphertext.txt
openssl enc -d -aes-256-cbc -base64 -k "Secret ...
0
votes
1answer
42 views
M2Crypto causes a core dump
Any idea how I can fix this?
>>> from M2Crypto import SSL
>>> M2Crypto.version
'0.21.1'
>>>
>>> ctx = SSL.Context()
>>> conn = SSL.Connection(ctx)
...
0
votes
1answer
29 views
m2crypto threading usage
the documentation is somehow sparse. I intend to use m2crypto in a webserver and it seems m2crypto.threading.init() shall be used.
Shall my python function called upon web request be something as:
...
0
votes
0answers
39 views
M2Crypto segmentation fault while signing
I am trying to use m2crypto on ubuntu 11.10.
When I sign some data, and after i try to sign again some other data I always get segmentation error.
import M2Crypto
def test():
mojpass='xxx'
...
0
votes
0answers
76 views
M2Crypto return a X509 object from a function
I did this function that takes a pkcs7 envelop and the issuer public key and return the certificate.
def get_cert_from_pkcs7(pkcs7, cert_parent):
"""
Take a pkcs7 and return a certificate.
...
1
vote
1answer
446 views
Extract userCertificate from PKCS7 envelop in python
Ok, I am trying to verify data from PKCS7 envelop using Python.
I have the working code in Java: http://nyal.developpez.com/tutoriel/java/bouncycastle/#L4.2
What I want is first get the certificate ...
0
votes
1answer
474 views
How to import m2crypto library into python [closed]
I am a newbie to python. I use eclipse. I need to work with m2crypto library. How can I import it to my .py file ?
2
votes
1answer
256 views
Encrypt file using M2Crypto
It is known that I can read the whole file content in memory and encrypt it using the following code.
contents = fin.read()
cipher = M2Crypto.EVP.Cipher(alg="aes_128_cbc", key = aes_key, iv = aes_iv, ...
0
votes
1answer
117 views
M2Crypto RSA Unicode Strings Encoded Differently Than Byte Strings
I was encoding emails to be used with an external website's API using Python M2Crypto's RSA with PKCS1 padding. When using unicode, the encoded emails returned no results from the API, but when I used ...
1
vote
2answers
182 views
Lower Limit on RSA message length in M2Crypto
I am trying to encode a message using a public key provided to me by an external site using Python M2Crypto's RSA. Essentially, I am doing something like this:
from M2Crypto import RSA
import os
rsa ...
3
votes
1answer
457 views
Verify signature with pyopenssl
I believe that since this question, pyOpenSSL has started supporting the verification of signatures (as of pyOpenSSL 0.11.
I am working on a project which was started by someone else using M2Crypto. ...
0
votes
0answers
304 views
Elliptic Curve using M2Crypto and BouncyCastle
Ok, I would like to sign using ecdsa in python, and then verify in Java. To do this I have developed a short python script using m2crypto, and a short java application using Bouncycastle.
It works ...
0
votes
2answers
354 views
Python M2Crypto's AES 128 Encryption Different From PHP's Mcrypt
Here is my Python code, I can successfully encrypt and decrypt using M2Crypto:
from base64 import b64encode, b64decode
import M2Crypto
class AESEncryptionService(object):
def encrypt(self, key, ...
3
votes
1answer
244 views
How to recreate the following signing cmd-line OpenSSL call using M2Crypto in Python?
This works perfectly in command-line, I would like to do the same using M2Crypto in Python code.
openssl smime -binary -sign -signer certificate.pem -inkey key.pem \
-in ...
0
votes
1answer
96 views
Is there a way to suppress Python M2Crypto's RSA.gen_key output?
I'm using the Python M2Crypto package to generate RSA keys.
>>> import M2Crypto
>>> rsa = M2Crypto.RSA.gen_key (2048, 65537)
...
1
vote
0answers
74 views
Deploying Django on Windows 2008 Server
There is an existing Django project that I am going to deploy on Windows 2008 Server. All required python libs have been installed. To check if everything is good I use python manage.py runserver ...
1
vote
0answers
212 views
Getting error: <type 'exceptions.ImportError'> DLL load failed: The operating system cannot run %1
I Have installed python 2.7.2 and M2Crypto-0.21.1-py2.7.egg-info in my Windows XP SP3 machine and wherever i am using import statement:
from M2Crypto import X509,ASN1,Rand,EVP,RSA its throwing error
...
0
votes
0answers
183 views
M2Crypto and Python when building crda module not found
I have been trying to build crda for openwrt. I keep getting an error "No module named M2Crypto". But this module is present and if I open up python and run import it is there. I am not sure if this ...
1
vote
1answer
504 views
M2Crypto RSA.sign vs OpenSSL rsautl -sign
M2Crypto and OpenSSL CLI doesn't seem to create the same digital signature. Here is the code that I use in Python:
import M2Crypto
rsa = M2Crypto.RSA.load_key("privkey.pem")
open("sig_m2crypto", ...
13
votes
1answer
766 views
EXP(ORT) ciphers and M2Crypto/OpenSSL
I am having a hard time running a M2Crypto SSLServer with EXPORT grade ciphers.
LOW/MEDIUM/HIGH grade ciphers work without any problems, but EXPORT just won't. Also, when OpenSSL is run in a server ...
0
votes
0answers
83 views
FTPS with m2crypto: USER command unrecognized
I've weird problems with some FTPS servers, not all.
Mainly 500 Syntax error, command unrecognized on USER username.
Here are the commands I used:
from M2Crypto import ftpslib, SSL
ctx = ...
0
votes
0answers
172 views
How to encrypt and send data via ECDH, with only a publickey (peerkey) provided?
I'm coding a program that needs asymmetric cryptography. My approach is using Python's M2Crypto and I have chosen ECDH as the algorithm. However, I also want the procedure to be as simple as RSA, ...
0
votes
1answer
177 views
Error for M2Crypto https get thru a web proxy with cac card authentication
I'm trying to make a https get request from behind a squid proxy with cac card authentication. Loading the opensc engine and grabbing the cert and private key seem to work fine. Below is the traceback ...
0
votes
1answer
312 views
M2Crypto.rsa privat key components
Can anybody tell me, how to get p,q,dp,dq and u component of rsa private key?
loading of the key:
string = open(keyfile,"rb").read();
bio = BIO.MemoryBuffer(string);
rsa = RSA.load_key_bio(bio);
...
3
votes
1answer
574 views
How can I load a password-protected private key from a .pem file with M2Crypto?
I have a password-protected private key in a .pem file; I want to use it to sign requests to a remote server. I'm able to load the key and enter the passphrase after being prompted for it:
python
...
1
vote
2answers
497 views
problems installing M2Crypto on Mint: follow-up
I asked a question here regarding installing the M2Crypto python library in Mint. That question was answered successfully and I was able to build and install M2Crypto. However, I am not able to use ...
7
votes
2answers
2k views
Install m2crypto on a virtualenv without system packages
I have created a virtual environment without the system packages with python's virtualenv in Ubuntu and I've install m2crypto but when I execute a shell and I try to import M2Crypto i get the ...
1
vote
3answers
228 views
problems installing M2Crypto on Mint
I am trying to install M2Crypto for python on Mint 12. I have executed `python setup.py build, but the build fails, stating
error: command 'gcc' failed with exit status 1
the preceding 2 lines ...
0
votes
1answer
331 views
M2Crypto - import keys from non-standard file?
I have a file with the public exponent and modulus in it. They're not in pem or xml or der format, they're just the values written in at their offsets.
How can I make a public key out of them with ...
0
votes
2answers
240 views
Python M2Crypto.SSL.Checker.NoCertificate Exception
I reached out to comp.lang.python to see if anyone had any ideas about this issue. I've received no response on the mailing list so I decided to reach out here.
I have a weird quirk with the ...
2
votes
3answers
1k views
How to get Python m2Crypto to work with virtualenv?
I'm trying to install M2Crypto so that I can generate pkey in my web app. My hosting requirements dictate that I must use pip to install any dependencies. Installing m2crypto at the system level is ...
1
vote
0answers
314 views
SAML signature verification using Python/M2Crypto
I'm attempting to use M2Crypto to verify a signature contained in an XML response returned from my SSO/SAML provider in my django/python app, but I can't seem to get it to work.
My XML response looks ...
0
votes
1answer
697 views
Python M2Crypto SSL: Unable to get local issuer certificate
I am trying to get peer-authentication working using X509 certs/M2Crypto.SSL
I generate a root CA (issuer & subject = ca_hostC) on the client (hostC)
I sign the client cert locally with this CA ...
0
votes
1answer
142 views
M2Crypto Common Name field and ip relation
I use M2Crypto with both client and server have keys and certificates added, no authority!!!
Now I found that field Common Name should be set to domain or anything as long as it is identical on both ...
1
vote
1answer
652 views
Python embedded web server with client authentication
I need to build a python web server which supports 2 different types of users :
"Super admins", which get full access to the admin panel when they connect using a pre-configured laptop/browser.
...
0
votes
1answer
143 views
M2Crypto BIO.readlines hangs, python 2.7
We're in the process of converting a C++ openssl based project to python w/ M2Crypto, and we've run into a somewhat unusual issue w/ the BIO routines from M2Crypto. Specifically, any call to ...
2
votes
1answer
401 views
Bad base64 Decode - M2Crypto - Python - Android - RSA
Trying to implement the signature verification of inapp billing on my server (Django/Python).
I found this great topic but I'm having issues with this line:
rsa = RSA.load_pub_key_bio(bio)
If I do ...
