Tagged Questions

Pyopenssl is a Python interface to the OpenSSL library.

learn more… | top users | synonyms

47
votes
3answers
2k 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 ...
4
votes
1answer
546 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 ...
4
votes
6answers
7k views

HTTPS connection Python

I am trying to verify the that target exposes a https web service. I have code to connect via HTTP but I am not sure how to connect via HTTPS. I have read you use SSL but I have also read that it did ...
3
votes
2answers
542 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 ...
3
votes
1answer
433 views

How to associated the cn in an ssl cert of pyOpenSSL verify_cb to a generated socket

I am a little new to pyOpenSSL. I am trying to figure out how to associate the generated socket to an ssl cert. verify_cb gets called which give me access to the cert and a conn but how do I ...
2
votes
1answer
358 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 ...
2
votes
1answer
269 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
461 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, ...
2
votes
1answer
837 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
250 views

Twisted DTLS connection

How to implement dtls protocol using twisted with m2crypto (or pyopenssl)?
1
vote
2answers
29 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 ...
1
vote
1answer
538 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 ...
1
vote
1answer
55 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: ...
1
vote
1answer
264 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 ...
1
vote
1answer
296 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 ...
1
vote
1answer
260 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
vote
1answer
712 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 ...
0
votes
1answer
124 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 ...
0
votes
1answer
29 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) ...
0
votes
1answer
469 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 ...