<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pyopenssl.git/doc/api, branch dependabot/github_actions/actions/setup-python-2.3.1</title>
<subtitle>github.com: pyca/pyopenssl.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyopenssl.git/'/>
<entry>
<title>Misc CI cleanups (#1045)</title>
<updated>2021-10-04T07:11:00+00:00</updated>
<author>
<name>Nathaniel J. Smith</name>
<email>njs@pobox.com</email>
</author>
<published>2021-10-04T07:11:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyopenssl.git/commit/?id=91d670ff9353e1040ff87e369f3098167bd86ee0'/>
<id>91d670ff9353e1040ff87e369f3098167bd86ee0</id>
<content type='text'>
* Misc CI cleanups

- Update branch names to match upstream
- Drop py2 testing

* Appease stricter checking in latest Sphinx to get CI passing again

* Don't accidentally delete an important line from tox.ini

* Give py2 support a brief stay of execution

As requested by @reaperhulk on IRC</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Misc CI cleanups

- Update branch names to match upstream
- Drop py2 testing

* Appease stricter checking in latest Sphinx to get CI passing again

* Don't accidentally delete an important line from tox.ini

* Give py2 support a brief stay of execution

As requested by @reaperhulk on IRC</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://91.123.203.49/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>
<entry>
<title>remove CB_ISSUER_CHECK (#982)</title>
<updated>2021-02-21T04:05:33+00:00</updated>
<author>
<name>Rosen Penev</name>
<email>rosenp@gmail.com</email>
</author>
<published>2021-02-21T04:05:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyopenssl.git/commit/?id=d290855aab9f12d7cf739c63aad9ca3699d936f7'/>
<id>d290855aab9f12d7cf739c63aad9ca3699d936f7</id>
<content type='text'>
Deprecated under OpenSSL 1.1

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Deprecated under OpenSSL 1.1

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>ALPN: complete handshake without accepting a client's protocols. (#876)</title>
<updated>2019-11-18T03:56:26+00:00</updated>
<author>
<name>Mark Williams</name>
<email>mrw@enotuniq.org</email>
</author>
<published>2019-11-18T03:56:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyopenssl.git/commit/?id=5d890a00af541abe379c2eea76ab668080eabff6'/>
<id>5d890a00af541abe379c2eea76ab668080eabff6</id>
<content type='text'>
* ALPN: complete handshake without accepting a client's protocols.

The callback passed to `SSL_CTX_set_alpn_select_cb` can return
`SSL_TLSEXT_ERR_NOACK` to allow the handshake to continue without
accepting any of the client's offered protocols.

This commit introduces `NO_OVERLAPPING_PROTOCOLS`, which the Python
callback passed to `Context.set_alpn_select_callback` can return to
achieve the same thing.

It does not change the previous meaning of an empty string, which
still terminates the handshake.

* Update src/OpenSSL/SSL.py

Co-Authored-By: Alex Gaynor &lt;alex.gaynor@gmail.com&gt;

* Address @alex's review.

* Use recorded value in test, fix lint error.

* Cover TypeError branch in _ALPNHelper.callback
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* ALPN: complete handshake without accepting a client's protocols.

The callback passed to `SSL_CTX_set_alpn_select_cb` can return
`SSL_TLSEXT_ERR_NOACK` to allow the handshake to continue without
accepting any of the client's offered protocols.

This commit introduces `NO_OVERLAPPING_PROTOCOLS`, which the Python
callback passed to `Context.set_alpn_select_callback` can return to
achieve the same thing.

It does not change the previous meaning of an empty string, which
still terminates the handshake.

* Update src/OpenSSL/SSL.py

Co-Authored-By: Alex Gaynor &lt;alex.gaynor@gmail.com&gt;

* Address @alex's review.

* Use recorded value in test, fix lint error.

* Cover TypeError branch in _ALPNHelper.callback
</pre>
</div>
</content>
</entry>
<entry>
<title>Expose OP_NO_TLSv1_3 (#861)</title>
<updated>2019-08-02T04:32:13+00:00</updated>
<author>
<name>Nathaniel J. Smith</name>
<email>njs@pobox.com</email>
</author>
<published>2019-08-02T04:32:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyopenssl.git/commit/?id=a18137385f574603535b29ad935f496d307ab3ae'/>
<id>a18137385f574603535b29ad935f496d307ab3ae</id>
<content type='text'>
* Expose OP_NO_TLSv1_3

* Support openssl &lt;1.1.1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Expose OP_NO_TLSv1_3

* Support openssl &lt;1.1.1
</pre>
</div>
</content>
</entry>
<entry>
<title>Use autofocus for all module documentation/docstrings (#737)</title>
<updated>2018-02-15T09:57:59+00:00</updated>
<author>
<name>Alex Chan</name>
<email>alex@alexwlchan.net</email>
</author>
<published>2018-02-15T09:57:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyopenssl.git/commit/?id=d072cae3a4e0d41602ffd0730a838fa12657ed4a'/>
<id>d072cae3a4e0d41602ffd0730a838fa12657ed4a</id>
<content type='text'>
* Use autodoc for OpenSSL.crypto

* Use autodoc for the SSL.Context class

* Use autodoc for SSL.Connection
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Use autodoc for OpenSSL.crypto

* Use autodoc for the SSL.Context class

* Use autodoc for SSL.Connection
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve documentation for passphrase callback (#703)</title>
<updated>2017-10-12T05:51:52+00:00</updated>
<author>
<name>Diego Fernandez</name>
<email>aiguo.fernandez@gmail.com</email>
</author>
<published>2017-10-12T05:51:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyopenssl.git/commit/?id=fe0120f9fbf08ca937cc95cf409c0d888145fafa'/>
<id>fe0120f9fbf08ca937cc95cf409c0d888145fafa</id>
<content type='text'>
Address issue #701</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Address issue #701</pre>
</div>
</content>
</entry>
<entry>
<title>Bend some recent changes to standards (#669)</title>
<updated>2017-07-20T08:32:37+00:00</updated>
<author>
<name>Hynek Schlawack</name>
<email>hs@ox.cx</email>
</author>
<published>2017-07-20T08:32:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyopenssl.git/commit/?id=8102128e6ad83dcbb3567dd372cdd39c9a8fab44'/>
<id>8102128e6ad83dcbb3567dd372cdd39c9a8fab44</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>document set_default_verify_paths caveats (#667)</title>
<updated>2017-07-19T19:34:01+00:00</updated>
<author>
<name>Paul Kehrer</name>
<email>paul.l.kehrer@gmail.com</email>
</author>
<published>2017-07-19T19:34:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyopenssl.git/commit/?id=ad44ccd817dbd6aa0949c19381ac56841919afc7'/>
<id>ad44ccd817dbd6aa0949c19381ac56841919afc7</id>
<content type='text'>
* document set_default_verify_paths caveats

fixes #642

* add a bit more detail

* weasel words
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* document set_default_verify_paths caveats

fixes #642

* add a bit more detail

* weasel words
</pre>
</div>
</content>
</entry>
<entry>
<title>add note about cryptography to crypto module (#666)</title>
<updated>2017-07-19T19:09:04+00:00</updated>
<author>
<name>Paul Kehrer</name>
<email>paul.l.kehrer@gmail.com</email>
</author>
<published>2017-07-19T19:09:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyopenssl.git/commit/?id=dc996b108faaa0a91eceaffce2972f21c61ccc9c'/>
<id>dc996b108faaa0a91eceaffce2972f21c61ccc9c</id>
<content type='text'>
fixes #663</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fixes #663</pre>
</div>
</content>
</entry>
</feed>
