diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-09-11 09:16:34 +0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-09-10 21:16:34 -0400 |
commit | 5d66966032a1efbcbf093804a19951f399c2a6eb (patch) | |
tree | d769399c9c7f3e3a81fb199e89af8167bd28339f /CHANGELOG.rst | |
parent | d4bde9ce6668bb019f9c9db4cd26280e6cf7fa21 (diff) | |
download | cryptography-5d66966032a1efbcbf093804a19951f399c2a6eb.tar.gz cryptography-5d66966032a1efbcbf093804a19951f399c2a6eb.tar.bz2 cryptography-5d66966032a1efbcbf093804a19951f399c2a6eb.zip |
[WIP] add support for the TLSFeature extension in x509 (#3899)
* add support for the TLSFeature extension in x509
This extension is used for OCSP Must-Staple.
* fix changelog link
* pep8
* refactor to support the sequence properly and add status_request_v2
* update some language
* add test vector, implement eq/ne/hash on TLSFeature
* address review comments
Diffstat (limited to 'CHANGELOG.rst')
-rw-r--r-- | CHANGELOG.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 32560318..51488ce7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -41,7 +41,9 @@ Changelog * Added support for using labels with :class:`~cryptography.hazmat.primitives.asymmetric.padding.OAEP` when using OpenSSL 1.0.2 or greater. - +* Add support for the :class:`~cryptography.x509.TLSFeature` + extension. This is commonly used for enabling ``OCSP Must-Staple`` in + certificates. .. _v2-0-3: |