1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
Metadata-Version: 2.4
Name: pyhanko-certvalidator
Version: 0.30.2
Summary: Validates X.509 certificates and paths; forked from wbond/certvalidator
Author-email: Matthias Valvekens <dev@mvalvekens.be>
License-Expression: MIT
Project-URL: Homepage, https://github.com/MatthiasValvekens/pyHanko/tree/master/pkgs/pyhanko-certvalidator
Keywords: crypto,pki,x509,certificate,crl,ocsp
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Security :: Cryptography
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: asn1crypto>=1.5.1
Requires-Dist: oscrypto>=1.1.0
Requires-Dist: cryptography>=41.0.5
Requires-Dist: uritools>=3.0.1
Requires-Dist: requests>=2.31.0
Provides-Extra: async-http
Requires-Dist: aiohttp<3.14,>=3.9; extra == "async-http"
Dynamic: license-file
# certvalidator
This library started as a fork of [wbond/certvalidator](https://github.com/wbond/certvalidator) with patches for [pyHanko](https://github.com/MatthiasValvekens/pyHanko), but has since diverged considerably from its parent repository.
GitHub issues are disabled on this repository. Bug reports regarding this library should be submitted to the [pyHanko issue tracker](https://github.com/MatthiasValvekens/pyHanko/issues).
Similarly, questions regarding this library's usage can be asked in the [pyHanko discussion forum](https://github.com/MatthiasValvekens/pyHanko/discussions).
`pyhanko-certvalidator` is a Python library for validating X.509 certificates paths. It supports various
options, including: validation at a specific moment in time, whitelisting and revocation checks.
- [Features](#features)
- [Current Release](#current-release)
- [Installation](#installation)
- [License](#license)
- [Documentation](#documentation)
- [Continuous Integration](#continuous-integration)
- [Testing](#testing)
## Features
- X.509 path building
- X.509 basic path validation
- Signatures
- RSA (including PSS padding), DSA, ECDSA and EdDSA algorithms.
- Name chaining
- Validity dates
- Basic constraints extension
- CA flag
- Path length constraint
- Key usage extension
- Extended key usage extension
- Certificate policies
- Policy constraints
- Policy mapping
- Inhibit anyPolicy
- Failure on unknown/unsupported critical extensions
- Blacklisting hash algorithms
- Revocation checks
- CRLs
- Indirect CRLs
- Delta CRLs
- OCSP checks
- Delegated OCSP responders
- Disable, require or allow soft failures
- Caching of CRLs/OCSP responses
- CRL and OCSP HTTP clients
- Point-in-time validation
- Name constraints
- Attribute certificate support
## Current Release

## Dependencies
- *asn1crypto*
- *cryptography*
- *uritools*
- *oscrypto*
- *requests* or *aiohttp* (use the latter for more efficient asyncio, requires resource management)
- Python 3.7 or higher
### Note on compatibility
Starting with `pyhanko-certvalidator` version `0.17.0`, the library has been refactored to use asynchronous I/O as much as possible. Most high-level API entrypoints can still be used synchronously, but have been deprecated in favour of their asyncio equivalents.
As part of this move, the OCSP and CRL clients now have two separate implementations: a `requests`-based one, and an `aiohttp`-based one. The latter is probably more performant, but requires more resource management efforts on the caller's part, which was impossible to implement without making major breaking changes to the public API that would make the migration path more complicated. Therefore, the `requests`-based fetcher will remain the default for the time being.
## Installation
```bash
pip install pyhanko-certvalidator
```
## License
*certvalidator* is licensed under the terms of the MIT license. See the
[LICENSE](LICENSE) file for the exact license text.
## Testing
### Test framework
Tests are written using `pytest` and require an asynchronous test case backend
such as `pytest-asyncio`.
### Test cases
The test cases for the library are comprised of:
- [Public Key Interoperability Test Suite from NIST](http://csrc.nist.gov/groups/ST/crypto_apps_infra/pki/pkitesting.html)
- [OCSP tests from OpenSSL](https://github.com/openssl/openssl/blob/master/test/recipes/80-test_ocsp.t)
- Various certificates generated for bespoke X.509 certificate validation scenarios
Existing releases can be found at https://pypi.org/project/pyhanko-certvalidator.
|