pyhanko-certvalidator


Namepyhanko-certvalidator JSON
Version 0.26.3 PyPI version JSON
download
home_page
SummaryValidates X.509 certificates and paths; forked from wbond/certvalidator
upload_time2023-12-13 22:47:26
maintainer
docs_urlNone
author
requires_python>=3.7
licenseMIT
keywords crypto pki x509 certificate crl ocsp
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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.

Bugs and questions regarding this library should be asked in the [pyHanko repository](https://github.com/MatthiasValvekens/pyHanko/discussions) rather than here.

`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
 - 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
 - CRL and OCSP HTTP clients
 - Point-in-time validation
 - Name constraints
 - Attribute certificate support

## Current Release

![pypi](https://img.shields.io/pypi/v/pyhanko-certvalidator.svg) - [changelog](changelog.md)

## 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 TLS certificate validation


Existing releases can be found at https://pypi.org/project/pyhanko-certvalidator.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pyhanko-certvalidator",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "crypto,pki,x509,certificate,crl,ocsp",
    "author": "",
    "author_email": "Matthias Valvekens <dev@mvalvekens.be>",
    "download_url": "https://files.pythonhosted.org/packages/d0/82/66c6d0cda723b58cb01839cfa7d2d81b4328e275be45caaefe3425f3c995/pyhanko-certvalidator-0.26.3.tar.gz",
    "platform": null,
    "description": "# certvalidator\n\nThis 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.\n\nBugs and questions regarding this library should be asked in the [pyHanko repository](https://github.com/MatthiasValvekens/pyHanko/discussions) rather than here.\n\n`pyhanko-certvalidator` is a Python library for validating X.509 certificates paths. It supports various\noptions, including: validation at a specific moment in time, whitelisting and revocation checks.\n\n - [Features](#features)\n - [Current Release](#current-release)\n - [Installation](#installation)\n - [License](#license)\n - [Documentation](#documentation)\n - [Continuous Integration](#continuous-integration)\n - [Testing](#testing)\n\n\n## Features\n\n - X.509 path building\n - X.509 basic path validation\n   - Signatures\n     - RSA (including PSS padding), DSA, ECDSA and EdDSA algorithms.\n   - Name chaining\n   - Validity dates\n   - Basic constraints extension\n     - CA flag\n     - Path length constraint\n   - Key usage extension\n   - Extended key usage extension\n   - Certificate policies\n     - Policy constraints\n     - Policy mapping\n     - Inhibit anyPolicy\n   - Failure on unknown/unsupported critical extensions\n - TLS/SSL server validation\n - Whitelisting certificates\n - Blacklisting hash algorithms\n - Revocation checks\n   - CRLs\n     - Indirect CRLs\n     - Delta CRLs\n   - OCSP checks\n     - Delegated OCSP responders\n   - Disable, require or allow soft failures\n   - Caching of CRLs/OCSP responses\n - CRL and OCSP HTTP clients\n - Point-in-time validation\n - Name constraints\n - Attribute certificate support\n\n## Current Release\n\n![pypi](https://img.shields.io/pypi/v/pyhanko-certvalidator.svg) - [changelog](changelog.md)\n\n## Dependencies\n\n - *asn1crypto*\n - *cryptography*\n - *uritools*\n - *oscrypto*\n - *requests* or *aiohttp* (use the latter for more efficient asyncio, requires resource management)\n - Python 3.7 or higher\n\n ### Note on compatibility\n\n 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. \n 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.\n\n\n## Installation\n\n```bash\npip install pyhanko-certvalidator\n```\n\n## License\n\n*certvalidator* is licensed under the terms of the MIT license. See the\n[LICENSE](LICENSE) file for the exact license text.\n\n\n\n## Testing\n\n### Test framework\n\nTests are written using `pytest` and require an asynchronous test case backend\nsuch as `pytest-asyncio`.\n\n### Test cases\n\nThe test cases for the library are comprised of:\n\n - [Public Key Interoperability Test Suite from NIST](http://csrc.nist.gov/groups/ST/crypto_apps_infra/pki/pkitesting.html)\n - [OCSP tests from OpenSSL](https://github.com/openssl/openssl/blob/master/test/recipes/80-test_ocsp.t)\n - Various certificates generated for TLS certificate validation\n\n\nExisting releases can be found at https://pypi.org/project/pyhanko-certvalidator.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Validates X.509 certificates and paths; forked from wbond/certvalidator",
    "version": "0.26.3",
    "project_urls": {
        "Homepage": "https://github.com/MatthiasValvekens/certvalidator"
    },
    "split_keywords": [
        "crypto",
        "pki",
        "x509",
        "certificate",
        "crl",
        "ocsp"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "519c8332e1a42c8476aa48b0ca10dee9d5513e6398f296b90194c8e8ba444690",
                "md5": "59b7fac811aeb8857a75d69b7caec9af",
                "sha256": "e386c87e202ff1caacf5fd941da6c3509e79db54dbd7b43c6550ceebe5e67077"
            },
            "downloads": -1,
            "filename": "pyhanko_certvalidator-0.26.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "59b7fac811aeb8857a75d69b7caec9af",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 109374,
            "upload_time": "2023-12-13T22:47:25",
            "upload_time_iso_8601": "2023-12-13T22:47:25.583752Z",
            "url": "https://files.pythonhosted.org/packages/51/9c/8332e1a42c8476aa48b0ca10dee9d5513e6398f296b90194c8e8ba444690/pyhanko_certvalidator-0.26.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d08266c6d0cda723b58cb01839cfa7d2d81b4328e275be45caaefe3425f3c995",
                "md5": "6af904493bb5e59a1e1c35b460f5a3fc",
                "sha256": "47fba8e9dbf846d766f2e0a453572dd4b25b2f1397847a31fe892c8eb00391f5"
            },
            "downloads": -1,
            "filename": "pyhanko-certvalidator-0.26.3.tar.gz",
            "has_sig": false,
            "md5_digest": "6af904493bb5e59a1e1c35b460f5a3fc",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 102722,
            "upload_time": "2023-12-13T22:47:26",
            "upload_time_iso_8601": "2023-12-13T22:47:26.933395Z",
            "url": "https://files.pythonhosted.org/packages/d0/82/66c6d0cda723b58cb01839cfa7d2d81b4328e275be45caaefe3425f3c995/pyhanko-certvalidator-0.26.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-13 22:47:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MatthiasValvekens",
    "github_project": "certvalidator",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyhanko-certvalidator"
}
        
Elapsed time: 0.15940s