Pyopenssl is a Python interface to the OpenSSL library.

learn more… | top users | synonyms

0
votes
1answer
21 views

get validTo date from x509 certificate using openssl-php

Need to get validTo (expiry) date from x509 certificate and validate with current date. Am using openssl_x509_parse($crtdata) to parse the certificate, any thought on how to get the validTo date from ...
1
vote
1answer
179 views

Convert Python (pyelliptic, openssl) ecc key and sign to c# (BouncyCastle?)

Project https://github.com/Bitmessage/PyBitmessage use the library https://github.com/yann2192/pyelliptic for use openssl. pyelliptic test case: #!/usr/bin/python import pyelliptic from pyelliptic ...
1
vote
0answers
55 views

Google Drive API ImportError

I am trying to perform authentication at domain level of Google Drive API(Oauth2). For that I refer the google drive document link as below: https://developers.google.com/drive/delegation I have ...
0
votes
0answers
21 views

pyopenssl string_mask utf8 enconding

I am using pyopenssl to generate csr but Thawte is not accepting the CSR and suggesting to convert my script to use only utf8 encoding while generating the CSR. I have searched the web for help but ...
0
votes
0answers
79 views

Disabling weak SSL Cipher CherryPy/Windows Server 2008

I am running CherryPy 3.2.2 (Python 2.7) as a web server under Windows server 2008. While scanning with SSLLABS, the cipher suite "TLS_RSA_WITH_DES_CBC_SHA" is identified as weak. How can I disable ...
0
votes
0answers
74 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
1answer
187 views

creating self signed certificate using pyopenssl

i am trying to generate ac self signed X509v3 CA certificate using pyopenssl. I would want to add the extension authority key identifier(AKID) with keyid containing subject key identifier(SKID). But ...
2
votes
1answer
113 views

get public key from private key with python OpenSSL

Well, I generate a private key with pyOpenSSL as follows: from OpenSSL import crypto k = crypto.PKey() k.generate_key(crypto.TYPE_RSA, 2048) print crypto.dump_privatekey(crypto.FILETYPE_PEM, k) How ...
0
votes
0answers
42 views

PyOpenSSL reading certificate/pkey file

That's how i create certificate from OpenSSL import crypto cert = crypto.X509() cert.get_subject().C = countryName cert.get_subject().ST = stateOrProvinceName ... ...
0
votes
1answer
162 views

How do I install pyOpenSSL on Mac OS X?

I am using Titanium 3.0 and trying to update pyOpenSSL. I have checked the python website and only see downloadable links for Windows. In the Tianium forum they say that "If you installed Python ...
0
votes
0answers
69 views

pkg_resources.DistributionNotFound: pyOpenSSL

I have installed scrapy using pip I get this error when I start scrapy using command scrapy pkg_resources.DistributionNotFound: pyOpenSSL I am using Kubuntu 12.04 I have also installed pyOpenSSL ...
3
votes
1answer
68 views

What is unwrap equivalent in OpenSSL.Connection?

I'm using OpenSSL, I want to close the SSL connection but want to keep the underlying plain socket connection alive. The SSL library seems to have an unwrap function for it. What would be the ...
3
votes
2answers
459 views

Extract Public Key in Python OpenSSL (pyOpenSSL) from certificate or other connection information

I'm currently trying to write a python server script which should authenticate the current client based on its public key. Since I'm using twisted, the example in the twisted documenteation got me ...
3
votes
3answers
187 views

PyOpenSSL: Get a CRL's last update and next update fields

I'm trying to get the dates for a CRL using PyOpenSSL. The CRL class doesn't contain them as accessible members. I'm going through all of the underscore members, but I'd rather not use one of those, ...
1
vote
0answers
109 views

How do I safely use select with a PyOpenSSL connection object?

Python: 2.7.2 on Windows Vista Egenix PyOpenSSL: 0.13.0 I am attempting to write a proxy service. Basically, the proxy service listens on a regular socket and an SSL socket, relaying data between ...
0
votes
0answers
110 views

Chromium browser reacting very badly with pyopenssl app (SSL handshake failures & unexpected EOFs)

My server app works fine on my original development platform (Ubuntu 10.04 / py2.6 / Firefox 3.x) however... I'm on holiday now and am working on a different system (Lubuntu / py2.7 / Cromium) and ...
3
votes
1answer
468 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. ...
1
vote
0answers
217 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
173 views

Scrapy pyOpenSSL Windows 7x64

I have installed pyOpenSSL on x64 windows 7 machine. But every time I try to access a 'https' website I get the error HTTPS not supported: install pyopenssl library If you traceback the error this ...
0
votes
1answer
255 views

Replace OpenSSL in oauth2client.crypt to work with PyCrypto

Google App Engine supports PyCrypto, but does not support OpenSSL. I want to use the oauth2client SignedJwtAssertionCredentials, which internally calls OpenSSL . Is there is a way to get ...
0
votes
1answer
168 views

installing pyopenssl on ios

when i type: easy_install pyopensll the results are: davie:~ root# easy_install pyopenssl Searching for pyopenssl Reading http://pypi.python.org/simple/pyopenssl/ Reading ...
13
votes
1answer
772 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
1answer
350 views

Istalling scrapy (openSSL)

I'm using scrapy for couple of months now. I've been using it on the couple of machines and never had trouble with it. I used it on Windows xp and 7, I also used it on arch linux and never had trouble ...
0
votes
1answer
2k views

Trying to install Scrapy - error: Could not find 'openssl.exe'

Any thoughts on how to fix this problem? I am using pip to install Scrapy on a Win XP Pro SP 3 machine. I have Python 2.7 installed on the machine. There seems to be a problem with pyOpenSSL. I am ...
1
vote
1answer
181 views

Code to fetch intermediate certificate automatically

When you install an SSL certificate you should include the intermediate certificates as well. I handle a lot of SSL certificates and I spend a lot of time tracking down intermediates along the ...
0
votes
1answer
250 views

Packaging pyOpenSSL into a windows executable using PyInstaller

I am trying to include the pyOpenSSL package into an executable from a virtual environment. The executable builds with out error but when I come to run it fails with error "DLL load failed: The ...
1
vote
1answer
3k views

Python - SSL - wrong version number

This will probably be just another unsolved thread but i'll fill in some info anyway. I can't get my SSL wrapping together not even for a second. Any ideas to what i'm doing wrong with my ...
2
votes
1answer
890 views

unable to load public key

I am having difficulties debugging a django/python application that requires a public key to be used to sign a certificate. 1. I created a key in PEM format from my private key using the following ...
0
votes
0answers
635 views

Windows 7 Openssl 64 bit error when installing pyopenssl

i want to install scrapy, however it cannot complete install due to a pyopenssl errror when using pip. its a 64 bit machinr. I continue to receive the error. writing dependency_links to ...
1
vote
1answer
724 views

PyOpenSSL convert certificate object to .pem file

I want to send a certificate from a "certificate authority" to a node through sockets. I have a certificate created using this example ...
0
votes
1answer
203 views

How to convert PyOpenSSL object to PEM-encoded string?

I'm trying to extract the private key and certificate from a PKCS12 file using pyOpenSSL, and am having a hard time figuring out how to convert the data to PEM-encoded strings. The question below ...
5
votes
1answer
1k views

Installing scrapy/pyopenssl in Windows' virtualenv

I am trying to install scrapy on Windows XP (32bit) virtualenv: pip install scrapy The installer spits out this ambiguous error message: error: Only found improper OpenSSL directories: ...
8
votes
1answer
1k views

Validating client certificates in PyOpenSSL

I'm writing an app that requires a cert to be installed in the client browser. I've found this in the PyOpenSSL docs for the "Context" object but I can't see anything about how the callback is ...
1
vote
2answers
234 views

Increasing the amount of data sent in a single socket.send() call

We have code similar to the one below to create an SSL enabled socket between a machine and a remote host to transfer data. We notice that the amount of data sent in each call to sock.send is about ...
10
votes
5answers
5k views

easy_install PyOpenSSL error

Any idea about what cause the error below ? I use Linux centos with openssl-devel.i386 0.9.8e-12.el5_5.7 $ easy_install PyOpenSSL Searching for PyOpenSSL Reading ...
2
votes
1answer
962 views

Extract the value of a X.509 certificate custom extension using PyOpenSSL

Using Python and PyOpenSSL, is there a way to retrieve the value of a custom extension? By custom extension, I mean an extension encoded using the arbitrary extension format described under ARBITRARY ...
5
votes
1answer
2k views

Python: reading a pkcs12 certificate with pyOpenSSL.crypto

I have a valid certificate issued by the spanish authority (FNMT) and I want to play with it to learn more about it. The file has extension .p12 I would like to read the information in it (first and ...
1
vote
1answer
171 views

PyOpenSSL: Force SSL negotiations without sending/receiving?

Is it possible to force PyOpenSSL into performing the SSL negotiation (and, specifically, retrieving the peer's certificate) without trying to send/receive data? Currently, with this code: ...
4
votes
1answer
1k views

How to generate the PEM serialization for the public RSA/DSA key

Using PyCrypto I was able to generate the public and private PEM serialization for a RSA key, but in PyCrypto the DSA class has no exportKey() method. Trying PyOpenSSL I was able to generate the ...
0
votes
1answer
63 views

two certificates sent during peer verification. Why?

def cert_check(conn,cert,errnum,depth,ok): print 'Got cert',cert.get_subject() return ok Server: ctx = SSL.context(SSL.TLSv1_METHOD) ctx.set_verify(SSL.VERIFY_PEER,verify_cb) ...
2
votes
1answer
1k views

extracting public key from certificate and encrypting data

This is for a homework assignment! I get the server's certificate using get_peer_certificate() and the calling dump_certificate to dump the certificate in a variable. The format is PEM and looks right ...
2
votes
2answers
2k views

using pyOpenSSL to create urllib custom opener

Hey, I have got an API that I have to work with. The API is secured by a two way SSL. I have a pem file and a crt file. When I connect to the server regularly, using PyOpenSSL I have no problem, ...
1
vote
1answer
605 views

wrapping ssh tunnel in ssl with openssl (python) almost finished

Some of you might remember a question very similar to this, as I seeked your help writin the original util in C (using libssh2 and openssl). I'm now trying to port it to python and got stuck at an ...
51
votes
2answers
3k views

Why is there a handshake failure when trying to run TLS over TLS with this code?

I tried to implement a protocol that can run TLS over TLS using twisted.protocols.tls, an interface to OpenSSL using a memory BIO. I implemented this as a protocol wrapper that mostly looks like a ...
3
votes
2answers
1k views

How to check that TLS handshake was finalize in Twisted

This is a follow up of this question: SSL handshake failures when no data was sent over Twisted TLSConnection I have implemented a simple SSL server that closes the connection as soon as the client ...
4
votes
1answer
2k views

Installing pyOpenSSL on Amazon Linux (EC2)

I'm using the first default AMI for amazon Linux on ec2 and can't seem to install pyOpenSSL. I tried: sudo wget http://launchpad.net/pyopenssl/main/0.11/+download/pyOpenSSL-0.11.tar.gz && ...
2
votes
1answer
565 views

Getting a pyOpenSSL client to use SSL session resume

I've been trying with no success to get my pyOpenSSL client to use TLS/SSL session resume when making several connections sucessively (it's sending http requests) to a Tomcat application server. I'm ...
0
votes
1answer
1k views

What do I need to distribute (keys, certs) for Python w/ SSL-socket connection?

I'm trying to write a generic server-client application that will be able to exchange data amongst servers. I've read over quite a few OpenSSL documents, and I have successfully setup my own CA and ...
2
votes
1answer
457 views

Twisted DTLS connection

How to implement dtls protocol using twisted with m2crypto (or pyopenssl)?
2
votes
1answer
502 views

pyOpenSSL and the WantReadError

I have a socket server that I am trying to move over to SSL on python 2.5, but I've run into a snag with pyOpenSSL. I can't find any good tutorials on using it, so I'm operating largely on guesses. ...

1 2