pyopenssl icon indicating copy to clipboard operation
pyopenssl copied to clipboard

A Python wrapper around the OpenSSL library

Results 129 pyopenssl issues
Sort by recently updated
recently updated
newest added

Hi! I try connect to fcm over xmpp with aioxmpp and aiofcm, but get the same error "OpenSSL.SSL.Error: [('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')] ". With aioxmpp: ``` class FCMPayload(aioxmpp.xso.XSO):...

Deferred: we can't do this until cryptography supports OpenSSL 1.1.1. It would be very helpful for applications like Twisted to have access to TLS 1.3 Early Data (see [this Twisted...

waiting-for-bindings

Let's Encrypt has something new on its pyca wishlist. We'd like an OCSP query API with the ability to inspect the HTTP headers from the OCSP response. This isn't an...

Hi there, I have been scouring the internet to find a solution to this and have come up empty handed. I am playing around with PKI and Certificates and am...

So this happened (this is a tail of a stacktrace, you can see it full at https://github.com/golemfactory/golem/issues/2834): ``` File "/Users/ederenn/golem/venv/lib/python3.6/site-packages/OpenSSL/SSL.py", line 1672, in bio_read self._handle_bio_errors(self._from_ssl, result) File "/Users/ederenn/golem/venv/lib/python3.6/site-packages/OpenSSL/SSL.py", line 1653,...

Our experience with pyOpenSSL + TLS 1.3 beta testing suggests that testing a broader set of TLS versions is valuable. We can do that by using `pytest.mark.parametrize` on tests we...

beginner-friendly

forwarding https://bugs.launchpad.net/pyopenssl/+bug/457795 as it seems to be missing: ``` The OpenSSL license states: * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear...

Hello pyOpenSSL gurus! We have a file transfer client (https://github.com/Azure/azure-data-lake-store-python) that relies on: cffi oathlib requests requests-oathlib When we run performance benchmarks on this client with just those packages installed,...

I'm trying to verify a certificate chain with `pathlen:0` on one of the intermediate certificates, and I'm getting this exception. It is working when I'm using openssl: ``` openssl verify...

```python In [1]: from OpenSSL import SSL In [2]: ctx = SSL.Context(SSL.SSLv23_METHOD) In [3]: conn = SSL.Connection(ctx, None) In [4]: conn.set_accept_state() In [5]: conn.send(bytearray(10)) TypeError: data must be a memoryview,...