<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pyopenssl.git/src/OpenSSL/SSL.py, branch 22.0.0</title>
<subtitle>github.com: pyca/pyopenssl.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyopenssl.git/'/>
<entry>
<title>Update variable name, there are now many linuxes (#1070)</title>
<updated>2021-12-23T22:02:36+00:00</updated>
<author>
<name>Alex Gaynor</name>
<email>alex.gaynor@gmail.com</email>
</author>
<published>2021-12-23T22:02:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyopenssl.git/commit/?id=d184fbbbb68b352a5818ebf94b4a6d68bb92d35a'/>
<id>d184fbbbb68b352a5818ebf94b4a6d68bb92d35a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename path_string to path_bytes since that's what it actually does (#1067)</title>
<updated>2021-12-19T21:12:59+00:00</updated>
<author>
<name>Alex Gaynor</name>
<email>alex.gaynor@gmail.com</email>
</author>
<published>2021-12-19T21:12:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyopenssl.git/commit/?id=8b85cfd411af794e77e9be645316607063234975'/>
<id>8b85cfd411af794e77e9be645316607063234975</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove native, it's behavior is confusing (#1069)</title>
<updated>2021-12-19T21:00:32+00:00</updated>
<author>
<name>Alex Gaynor</name>
<email>alex.gaynor@gmail.com</email>
</author>
<published>2021-12-19T21:00:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyopenssl.git/commit/?id=de073c62c809b2cd67315c5b3ae99ef38fcd26a9'/>
<id>de073c62c809b2cd67315c5b3ae99ef38fcd26a9</id>
<content type='text'>
Instead just decode stuff at the call-sites -- 100% of which were passing bytes</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead just decode stuff at the call-sites -- 100% of which were passing bytes</pre>
</div>
</content>
</entry>
<entry>
<title>Remove dead code (#1068)</title>
<updated>2021-12-19T21:00:17+00:00</updated>
<author>
<name>Alex Gaynor</name>
<email>alex.gaynor@gmail.com</email>
</author>
<published>2021-12-19T21:00:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyopenssl.git/commit/?id=c175f152a4b4c02f166035c915a847c3281b1e8c'/>
<id>c175f152a4b4c02f166035c915a847c3281b1e8c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove SSL_CTX_set_ecdh_auto call (#1059)</title>
<updated>2021-11-03T22:45:09+00:00</updated>
<author>
<name>Paul Kehrer</name>
<email>paul.l.kehrer@gmail.com</email>
</author>
<published>2021-11-03T22:45:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyopenssl.git/commit/?id=c8fe4dd5e91b00a5817db283c6198ef7031da825'/>
<id>c8fe4dd5e91b00a5817db283c6198ef7031da825</id>
<content type='text'>
They are a noop on 1.1.0+ and pyOpenSSL only supports 1.1.0+ now due to
cryptography versions</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
They are a noop on 1.1.0+ and pyOpenSSL only supports 1.1.0+ now due to
cryptography versions</pre>
</div>
</content>
</entry>
<entry>
<title>Expose some DTLS-related features (#1026)</title>
<updated>2021-11-02T06:30:36+00:00</updated>
<author>
<name>Nathaniel J. Smith</name>
<email>njs@pobox.com</email>
</author>
<published>2021-11-02T06:30:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyopenssl.git/commit/?id=e84e7b57d1838de70ab7a27089fbee78ce0d2106'/>
<id>e84e7b57d1838de70ab7a27089fbee78ce0d2106</id>
<content type='text'>
* Expose DTLS_METHOD and friends

* Expose OP_NO_RENEGOTIATION

* Expose DTLS MTU-related functions

* Expose DTLSv1_listen and associated callbacks

* Add a basic DTLS test

* Cope with old versions of openssl/libressl

* blacken

* Soothe flake8

* Add temporary hack to skip DTLS test on old cryptography versions

* Update for cryptography v35 release

* Add changelog entry

* Fix versionadded::

* get_cleartext_mtu doesn't exist on decrepit old openssl

* Rewrite DTLS test to work around stupid OpenSSL misbehavior

* flake8 go away

* minor tidying</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Expose DTLS_METHOD and friends

* Expose OP_NO_RENEGOTIATION

* Expose DTLS MTU-related functions

* Expose DTLSv1_listen and associated callbacks

* Add a basic DTLS test

* Cope with old versions of openssl/libressl

* blacken

* Soothe flake8

* Add temporary hack to skip DTLS test on old cryptography versions

* Update for cryptography v35 release

* Add changelog entry

* Fix versionadded::

* get_cleartext_mtu doesn't exist on decrepit old openssl

* Rewrite DTLS test to work around stupid OpenSSL misbehavior

* flake8 go away

* minor tidying</pre>
</div>
</content>
</entry>
<entry>
<title>Check for invalid ALPN lists before calling OpenSSL, for consistency (#1056)</title>
<updated>2021-10-27T22:37:33+00:00</updated>
<author>
<name>Nathaniel J. Smith</name>
<email>njs@pobox.com</email>
</author>
<published>2021-10-27T22:37:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyopenssl.git/commit/?id=45c5678e48839e08cd290285c052a65ecb4cac80'/>
<id>45c5678e48839e08cd290285c052a65ecb4cac80</id>
<content type='text'>
* Check for invalid ALPN lists before calling OpenSSL, for consistency

Fixes gh-1043

* Soothe flake8</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Check for invalid ALPN lists before calling OpenSSL, for consistency

Fixes gh-1043

* Soothe flake8</pre>
</div>
</content>
</entry>
<entry>
<title>py27 going, going, gone (#1047)</title>
<updated>2021-10-04T08:22:33+00:00</updated>
<author>
<name>Paul Kehrer</name>
<email>paul.l.kehrer@gmail.com</email>
</author>
<published>2021-10-04T08:22:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyopenssl.git/commit/?id=a42ec20880d44150022b8cd9c852fff6cca2dcaa'/>
<id>a42ec20880d44150022b8cd9c852fff6cca2dcaa</id>
<content type='text'>
* py27 going, going, gone

* black

* more black

* ok then

* forgot to remove pypy2</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* py27 going, going, gone

* black

* more black

* ok then

* forgot to remove pypy2</pre>
</div>
</content>
</entry>
<entry>
<title>add `NO_OVERLAPPING_PROTOCOLS` to `__all__` (#1025)</title>
<updated>2021-06-30T20:32:58+00:00</updated>
<author>
<name>Maximilian Hils</name>
<email>git@maximilianhils.com</email>
</author>
<published>2021-06-30T20:32:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyopenssl.git/commit/?id=c062a5d27932b57db9df32720966f54b36c95efb'/>
<id>c062a5d27932b57db9df32720966f54b36c95efb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add SSL_CTX_set_min_proto_version/SSL_CTX_set_max_proto_version bindings (#985)</title>
<updated>2021-03-10T21:35:24+00:00</updated>
<author>
<name>Maximilian Hils</name>
<email>git@maximilianhils.com</email>
</author>
<published>2021-03-10T21:35:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyopenssl.git/commit/?id=5dc698861c91b4aa83b284b282c0e91cdcee49a3'/>
<id>5dc698861c91b4aa83b284b282c0e91cdcee49a3</id>
<content type='text'>
* add Context.set_*_proto_version, fix #860

* docs: add new openssl tls methods

* accept the fact that nothing can be taken for granted

* bump minimum required cryptography version to 3.3

* drop support for Python 3.5

* use binary wheels for cryptography

* Revert "use binary wheels for cryptography"

This reverts commit 91a04c612ed1d0dd9fd541dfefe21cac7c25b1c1.

* docker ci: compile cryptography with rust</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* add Context.set_*_proto_version, fix #860

* docs: add new openssl tls methods

* accept the fact that nothing can be taken for granted

* bump minimum required cryptography version to 3.3

* drop support for Python 3.5

* use binary wheels for cryptography

* Revert "use binary wheels for cryptography"

This reverts commit 91a04c612ed1d0dd9fd541dfefe21cac7c25b1c1.

* docker ci: compile cryptography with rust</pre>
</div>
</content>
</entry>
</feed>
