aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/hazmat/backends/openssl/ocsp.py
Commit message (Collapse)AuthorAgeFilesLines
* Parse single_extensions in OCSP responses (#5059)Paul Kehrer2019-11-111-1/+9
| | | | | | | | | | | | * add single_extensions to OCSPResponse (#4753) * new vector, updateed docs, more stringent parser, changelog, etc * simplify PR (no SCT for now) * add a comment * finish pulling out the sct stuff so tests might actually run
* Simplify string formatting (#4757)Alex Gaynor2019-02-201-2/+2
|
* add signature_hash_algorithm to OCSPResponse (#4681)Paul Kehrer2019-01-101-0/+11
| | | | | | * add signature_hash_algorithm to OCSPResponse * fix pointless asserts
* next_update is not a required field on OCSP responses (#4513)Paul Kehrer2018-10-231-2/+4
|
* OCSP response serialization (#4482)Paul Kehrer2018-10-061-0/+13
| | | | | | * support OCSP response serialization * empty commit, good times
* add OCSP basic response extension parsing (#4479)Paul Kehrer2018-10-061-1/+7
| | | | | | | | | | * add OCSP basic response extension parsing Just nonce for now. This does not support SINGLERESP extension parsing. * also raises on extensions for non-successful * empty commit
* support OCSP response parsing (#4452)Paul Kehrer2018-10-011-3/+241
| | | | | | | | | | | | * support OCSP response parsing * move the decorator to make pep8 happy * add some missing docs * review feedback * more review feedback
* OCSP request extension parsing (#4464)Paul Kehrer2018-09-091-1/+5
| | | | | | | | | | * add OCSP request parsing support with OCSPNonce * add docs * reprs man * make extensions a cached property
* small refactor of OCSP request parsing (#4447)Paul Kehrer2018-09-011-38/+54
| | | | This allows us to reuse these functions in the OCSPResponse object in the future
* refactor ocsp request parsing and generation to support only one cert (#4439)Paul Kehrer2018-08-311-40/+12
| | | | | | | | * refactor ocsp request parsing and generation to support only one cert * small doc change * notimplementederror
* OCSP request parsing (#4393)Paul Kehrer2018-08-151-0/+119
* add public_bytes to OCSPRequest * review feedback * OCSP request parsing * change some prose * add __len__ as a required method