CHANGELOG: record new X.509 client verification APIs (#10615)

This commit is contained in:
William Woodruff 2024-03-20 21:15:24 -04:00 committed by GitHub
parent 71e4ae3434
commit 9482fdef7b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

4
.gitignore vendored
View file

@ -13,4 +13,6 @@ htmlcov/
*.py[cdo] *.py[cdo]
.hypothesis/ .hypothesis/
target/ target/
.rust-cov/ .rust-cov/
*.lcov
*.profdata

View file

@ -29,6 +29,12 @@ Changelog
They will be removed from the ``cipher`` module in 48.0.0. They will be removed from the ``cipher`` module in 48.0.0.
* Added support for deterministic * Added support for deterministic
:class:`~cryptography.hazmat.primitives.asymmetric.ec.ECDSA` (:rfc:`6979`) :class:`~cryptography.hazmat.primitives.asymmetric.ec.ECDSA` (:rfc:`6979`)
* Added support for client certificate verification to the
:mod:`X.509 path validation <cryptography.x509.verification>` APIs in the
form of :class:`~cryptography.x509.verification.ClientVerifier`,
:class:`~cryptography.x509.verification.VerifiedClient`, and
``PolicyBuilder``
:meth:`~cryptography.x509.verification.PolicyBuilder.build_client_verifier`.
.. _v42-0-5: .. _v42-0-5: