python-pyhanko-certvalidator 0.26.3-2 source package in Ubuntu

Changelog

python-pyhanko-certvalidator (0.26.3-2) unstable; urgency=medium

  * Fix lintian: missing-prerequisite-for-pyproject-backend

 -- Bastian Germann <email address hidden>  Mon, 26 Feb 2024 23:04:20 +0000

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-pyhanko-certvalidator_0.26.3-2.dsc 2.2 KiB c5b5be4d11ae7d424364abf926a11c74088a00c1029180d0da09abd1b87f7a00
python-pyhanko-certvalidator_0.26.3.orig.tar.gz 553.9 KiB 7861efb4259126327d9590703fe4f4316647d3725c32bd49ea67f0810abded1c
python-pyhanko-certvalidator_0.26.3-2.debian.tar.xz 3.6 KiB 49a3e00564458aa59e563a12616eb40820d6638281ec37d5deb12bcfcb3d1afc

Available diffs

No changes file available.

Binary packages built by this source

python3-pyhanko-certvalidator: Validates X.509 certificates and paths

 A Python library that offers functionality for validating X.509 digital
 certificates, which are widely used in security systems such
 as TLS/SSL, email encryption, PDF signatures, and more.
 .
 The pyhanko-certvalidator library performs the following main tasks:
  - Certificate Validation: The library checks the validity of X.509
    digital certificates. This includes checking the certificate signature,
    expiration date, issuing authority (CA), certificate revocation, and
    other important properties.
  - Chain of Trust: It helps to build and validate the certificate chain,
    that is, the sequence of certificates that links a specific certificate
    to a trusted certification authority (root CA).
  - CRL (Certificate Revocation Lists) Check: The library checks whether a
    certificate has been revoked by querying Certificate Revocation Lists
    (CRLs) published by certification authorities.
  - Online Certificate Status Protocol (OCSP) Check: In addition to CRL
    checking, certvalidator can check the status of a certificate through
    the Online Certificate Status Protocol (OCSP) to determine whether the
    certificate is still valid.
  - Custom Expiration Policy: You can configure and apply custom validity
    policies to meet specific certificate validation requirements.
  - Extensibility: The library is designed to be extensible and customizable.
 .
 This is a fork of the python3-certvalidator package.