<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/cryptography.git/src/_cffi_src/openssl/ocsp.py, branch goddamnit</title>
<subtitle>github.com: pyca/cryptography.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cryptography.git/'/>
<entry>
<title>additional OCSP bindings for the response builder (#4480)</title>
<updated>2018-10-06T19:36:39+00:00</updated>
<author>
<name>Paul Kehrer</name>
<email>paul.l.kehrer@gmail.com</email>
</author>
<published>2018-10-06T19:36:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cryptography.git/commit/?id=cdb7a2d7262ee016d39a7a59d29fc0437f7422e6'/>
<id>cdb7a2d7262ee016d39a7a59d29fc0437f7422e6</id>
<content type='text'>
* additional OCSP bindings for the response builder

* use the OCSP extension funcs that match the rest of x509
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* additional OCSP bindings for the response builder

* use the OCSP extension funcs that match the rest of x509
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove conditionals for OpenSSL 1.1.1 pre-releases (#4467)</title>
<updated>2018-09-15T04:23:01+00:00</updated>
<author>
<name>Alex Gaynor</name>
<email>alex.gaynor@gmail.com</email>
</author>
<published>2018-09-15T04:23:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cryptography.git/commit/?id=0a7bebfaf710d3691cec311d13be7725af4b93cc'/>
<id>0a7bebfaf710d3691cec311d13be7725af4b93cc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>OCSP request extension parsing (#4464)</title>
<updated>2018-09-10T02:57:21+00:00</updated>
<author>
<name>Paul Kehrer</name>
<email>paul.l.kehrer@gmail.com</email>
</author>
<published>2018-09-10T02:57:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cryptography.git/commit/?id=09403100de2f6f1cdd0d484dcb8e620f1c335c8f'/>
<id>09403100de2f6f1cdd0d484dcb8e620f1c335c8f</id>
<content type='text'>
* add OCSP request parsing support with OCSPNonce

* add docs

* reprs man

* make extensions a cached property
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* add OCSP request parsing support with OCSPNonce

* add docs

* reprs man

* make extensions a cached property
</pre>
</div>
</content>
</entry>
<entry>
<title>Add flags to error on compile with incompatible pointer type  (#4455)</title>
<updated>2018-09-06T02:44:29+00:00</updated>
<author>
<name>Paul Kehrer</name>
<email>paul.l.kehrer@gmail.com</email>
</author>
<published>2018-09-06T02:44:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cryptography.git/commit/?id=f88aea5d8b9452677bd23a9bba917b900cd634c0'/>
<id>f88aea5d8b9452677bd23a9bba917b900cd634c0</id>
<content type='text'>
* try something a bit different.

* newer compiler plz

* permute

* fix some warnings

* fix getters on OpenSSL &lt; 1.1.0

* this is getting involved

* given our compiler flags we can't have SSL_CTX_set_cookie_verify_cb
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* try something a bit different.

* newer compiler plz

* permute

* fix some warnings

* fix getters on OpenSSL &lt; 1.1.0

* this is getting involved

* given our compiler flags we can't have SSL_CTX_set_cookie_verify_cb
</pre>
</div>
</content>
</entry>
<entry>
<title>OCSP bindings (#4449)</title>
<updated>2018-09-01T18:53:12+00:00</updated>
<author>
<name>Paul Kehrer</name>
<email>paul.l.kehrer@gmail.com</email>
</author>
<published>2018-09-01T18:53:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cryptography.git/commit/?id=b41903740723d90be152a8a8e2a161b5c0110122'/>
<id>b41903740723d90be152a8a8e2a161b5c0110122</id>
<content type='text'>
* add many OCSP bindings

Much of OCSP was opaqued in 1.1.0 so this also adds a bunch of getters
for older OpenSSL. However, 1.1.0 itself made it impossible to access
certain fields in the opaque struct, so we're forced to de-opaque them
for 1.1.0 through 1.1.0i as well as 1.1.1-pre1 through 1.1.1-pre9. There
is a patch (openssl/openssl#7082) that fixes this and should be in
1.1.0j and 1.1.1-pre10 (or 1.1.1 final, whichever they choose to issue)

* backslashes are sometimes useful

* comments
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* add many OCSP bindings

Much of OCSP was opaqued in 1.1.0 so this also adds a bunch of getters
for older OpenSSL. However, 1.1.0 itself made it impossible to access
certain fields in the opaque struct, so we're forced to de-opaque them
for 1.1.0 through 1.1.0i as well as 1.1.1-pre1 through 1.1.1-pre9. There
is a patch (openssl/openssl#7082) that fixes this and should be in
1.1.0j and 1.1.1-pre10 (or 1.1.1 final, whichever they choose to issue)

* backslashes are sometimes useful

* comments
</pre>
</div>
</content>
</entry>
<entry>
<title>make an ocsp request (#4402)</title>
<updated>2018-08-30T14:41:32+00:00</updated>
<author>
<name>Paul Kehrer</name>
<email>paul.l.kehrer@gmail.com</email>
</author>
<published>2018-08-30T14:41:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cryptography.git/commit/?id=002fa75d6c57420ed1805e088e1d6ecbce880938'/>
<id>002fa75d6c57420ed1805e088e1d6ecbce880938</id>
<content type='text'>
* make an ocsp request

* update test, add docs

* make it an OCSPRequestBuilder

* review feedback and more tests

* make it a class

* empty commit to retrigger

* type check
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* make an ocsp request

* update test, add docs

* make it an OCSPRequestBuilder

* review feedback and more tests

* make it a class

* empty commit to retrigger

* type check
</pre>
</div>
</content>
</entry>
<entry>
<title>add OCSP binding for obtaining information from CertID structure (#3888)</title>
<updated>2017-09-06T22:11:22+00:00</updated>
<author>
<name>Paul Kehrer</name>
<email>paul.l.kehrer@gmail.com</email>
</author>
<published>2017-09-06T22:11:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cryptography.git/commit/?id=012df127b2990a1f73d0d94f5b164663af162446'/>
<id>012df127b2990a1f73d0d94f5b164663af162446</id>
<content type='text'>
* add OCSP binding for obtaining information from CertID structure

* empty commit
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* add OCSP binding for obtaining information from CertID structure

* empty commit
</pre>
</div>
</content>
</entry>
<entry>
<title>Funcs macros gone (#3695)</title>
<updated>2017-06-27T21:15:37+00:00</updated>
<author>
<name>Paul Kehrer</name>
<email>paul.l.kehrer@gmail.com</email>
</author>
<published>2017-06-27T21:15:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cryptography.git/commit/?id=491fd7cc5aefff8064039d073331b41a2f606a63'/>
<id>491fd7cc5aefff8064039d073331b41a2f606a63</id>
<content type='text'>
* No more FUNCS/MACROS distinction

* change the docs to not talk about MACROS since they're gone

* remove out of date comment
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* No more FUNCS/MACROS distinction

* change the docs to not talk about MACROS since they're gone

* remove out of date comment
</pre>
</div>
</content>
</entry>
<entry>
<title>add initial OCSP bindings</title>
<updated>2016-01-19T03:36:59+00:00</updated>
<author>
<name>Paul Kehrer</name>
<email>paul.l.kehrer@gmail.com</email>
</author>
<published>2016-01-18T22:54:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cryptography.git/commit/?id=687951a9250120eca47ac15eda1a1476a4e22add'/>
<id>687951a9250120eca47ac15eda1a1476a4e22add</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
