Validates X.509 certificates and paths; forked from wbond/certvalidator
Project description
certvalidator
Forked from wbond/certvalidator, with patches for pyHanko.
A Python library for validating X.509 certificates or paths. Supports various options, including: validation at a specific moment in time, whitelisting and revocation checks.
- Features
- Related Crypto Libraries
- Current Release
- Dependencies
- Installation
- License
- Documentation
- Continuous Integration
- Testing
- Development
- CI Tasks
Features
- X.509 path building
- X.509 basic path validation
- Signatures
- RSA (including PSS padding), DSA and EC 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
- Signatures
- TLS/SSL server validation
- Whitelisting certificates
- 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
- CRLs
- CRL and OCSP HTTP clients
- Point-in-time validation
- Name constraints
Current Release
Dependencies
- asn1crypto
- cryptography
- uritools
- oscrypto
- requests or aiohttp (use the latter for more efficient asyncio, requires resource management)
- Python 3.7, 3.8 or 3.9
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.
NOTE: version 0.17.0
has not been released yet, details will be in the change log.
Installation
pip install pyhanko-certvalidator
License
certvalidator is licensed under the terms of the MIT license. See the LICENSE file for the exact license text.
Documentation
Continuous Integration
Various combinations of platforms and versions of Python are tested via:
Testing
Tests are written using unittest
and require no third-party packages.
Depending on what type of source is available for the package, the following commands can be used to run the test suite.
Git Repository
When working within a Git working copy, or an archive of the Git repository, the full test suite is run via:
python run.py tests
To run only some tests, pass a regular expression as a parameter to tests
.
python run.py tests path
PyPi Source Distribution
When working within an extracted source distribution (aka .tar.gz
) from
PyPi, the full test suite is run via:
python setup.py test
Test Cases
The test cases for the library are comprised of:
- Public Key Interoperability Test Suite from NIST
- OCSP tests from OpenSSL
- Various certificates generated for TLS certificate validation
Development
To install the package used for linting, execute:
pip install --user -r requires/lint
The following command will run the linter:
python run.py lint
To install the packages requires to generate the API documentation, run:
pip install --user -r requires/api_docs
The documentation can then be generated by running:
python run.py api_docs
The following will run a test that connects to all (non-adult) sites in the Alexa top 1000 that respond on port 443:
python run.py stress_test
Once the script is complete, results that differ between the OS validation and the certvalidator validation will be listed for further debugging.
To change the version number of the package, run:
python run.py version {pep440_version}
To install the necessary packages for releasing a new version on PyPI, run:
pip install --user -r requires/release
Releases are created by:
-
Making a git tag in PEP 440 format
-
Running the command:
python run.py release
Existing releases can be found at https://pypi.org/project/pyhanko-certvalidator.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for pyhanko-certvalidator-0.17.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 863b131ed14e13ef667dfc3eb507aaa7ec828a163b190fd815f0f469f76c1df8 |
|
MD5 | f3aba54fafd776d085380552034dd897 |
|
BLAKE2b-256 | b948b89a6df670ac328f97639f91314d4e18abeac4caf0cd3d5ca650971ea33d |
Hashes for pyhanko_certvalidator-0.17.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1e329fff63ac5f1c217500bf7230f6e30fea6c63429536be6d37e61b235e461 |
|
MD5 | c8d9694176b46f6ddb9ab8ff9d93ab64 |
|
BLAKE2b-256 | 9e158cf7ac1f8372db57014565a08b2eceea895885f085040c9d20f8ba7d642d |