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

Can you add the support of RFC 9266: Channel Bindings for TLS 1.3? - https://datatracker.ietf.org/doc/html/rfc9266 Little details, to know easily: - tls-unique for TLS =< 1.2 - tls-exporter for TLS...

For more information, see https://cffi.readthedocs.io/en/latest/using.html#callbacks Found originally here: https://github.com/scrapy/scrapy/issues/4117 Seems like pyOpenSSL issue, that's why creating it here. Any advice or workaround is appreciated. Traceback: ``` 2019-10-31 20:24:51 [scrapy.downloadermiddlewares.robotstxt] ERROR:...

Added two unit tests for CRL.set_lastUpdate and CRL.set_nextUpdate. While the test works for set_lastUpdate, if fails on multiple levels for set_nextUpdate. The probable cause is the nextupdate field being optional...

OpenSSL.Context should expose a function to let client set signature algorithms (using SSL_CTX_set1_sigalgs_list which is already exposed by cryptography and available in pyOpenSSL). This is required to force the server...

This is based on SSL_CTX_set1_sigalgs(3). It let the client limits the set of signature algorithms that should be used by the server for certificate selection. This extension is supported from...

(depends on cryptography 38) Follow-up to https://github.com/pyca/cryptography/pull/7210. :) I've added comments to point out the duplication between Context and Connection. Let me know if you want those out, happy to...

Hey folks, I'm currently debugging a memory leak in mitmproxy which I think is rooted somewhere outside of our codebase. In short: 1. We see a slow but unbounded (heap)...

pyOpenSSL version is: 22.0.0 openssl version is: 1.1.1j OS: ubuntu 18.04 Python 3.6.9 when I called "connection.setblocking(True) ", the time out is invalid: >>> import OpenSSL >>> import socket >>>...

I noticed some bindings for OpenSSL are missing that I'm trying to use, namely: - `BN_clear` - `BN_div` - `BN_mul` - `BN_rand` - `CRYPTO_free` - `RAND_seed` For context, I'm trying...

https://www.openssl.org/docs/man1.1.1/man3/SSL_CTX_set_quiet_shutdown.html There is no wrapper for SSL_CTX_set_quiet_shutdown, SSL_CTX_get_quiet_shutdown, SSL_set_quiet_shutdown, SSL_get_quiet_shutdown