Skip to main content

OCSP certificate verification service for Swarmauri.

Project description

Swarmauri Logo

PyPI - Downloads Hits PyPI - Python Version PyPI - License PyPI - swarmauri_certs_ocspverify


swarmauri_certs_ocspverify

OCSP-based certificate verification service for the Swarmauri SDK.

This package provides an implementation of an ICertService that checks certificate revocation status using the Online Certificate Status Protocol (OCSP) defined in RFC 6960 while remaining compatible with X.509 certificate guidelines from RFC 5280.

Features

  • Parse PEM certificates to extract subject, issuer and OCSP responder URLs.
  • Verify certificate status via OCSP responders advertised in the certificate's Authority Information Access extension.

Prerequisites

  • Python 3.10 or newer.
  • Leaf certificate PEM to inspect and validate.
  • Issuer (intermediate) certificate PEM required to build the OCSP request.
  • Network access to the OCSP responder URLs exposed in the certificate's Authority Information Access extension.
  • Optional: trust root bundle if performing additional validation on issuer metadata alongside OCSP results.

Installation

# pip
pip install swarmauri_certs_ocspverify

# poetry
poetry add swarmauri_certs_ocspverify

# uv (pyproject-based projects)
uv add swarmauri_certs_ocspverify

Usage

Perform an OCSP status check for a leaf certificate using its issuer certificate:

import asyncio
from pathlib import Path

from swarmauri_certs_ocspverify import OcspVerifyService


async def main() -> None:
    service = OcspVerifyService()

    leaf_cert = Path("leaf.pem").read_bytes()
    issuer_cert = Path("issuer.pem").read_bytes()

    verification = await service.verify_cert(
        cert=leaf_cert,
        intermediates=[issuer_cert],
        check_revocation=True,
    )

    if verification["valid"]:
        print("Certificate status: GOOD")
    else:
        print("Certificate status:", verification["reason"])
    print("Next update:", verification.get("next_update"))


if __name__ == "__main__":
    asyncio.run(main())

Parsing OCSP Metadata

Use parse_cert to confirm which OCSP responder URLs are embedded and to inspect the validity window:

import asyncio
from pathlib import Path

from swarmauri_certs_ocspverify import OcspVerifyService


async def describe() -> None:
    service = OcspVerifyService()
    leaf_cert = Path("leaf.pem").read_bytes()

    metadata = await service.parse_cert(leaf_cert)
    print("Subject:", metadata["subject"])
    print("Issuer:", metadata["issuer"])
    print("OCSP URLs:", metadata.get("ocsp_urls", []))


if __name__ == "__main__":
    asyncio.run(describe())

Best Practices

  • Cache issuer certificates alongside leaf certificates so OCSP requests can be constructed quickly.
  • Respect OCSP responder rate limits; consider backoff and caching GOOD responses until next_update.
  • Combine OCSP checks with CRL fallbacks for authorities that support multiple revocation mechanisms.
  • Log reason and timestamp fields from the verification output to aid in incident response and compliance reporting.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

swarmauri_certs_ocspverify-0.9.3.dev5.tar.gz (8.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file swarmauri_certs_ocspverify-0.9.3.dev5.tar.gz.

File metadata

  • Download URL: swarmauri_certs_ocspverify-0.9.3.dev5.tar.gz
  • Upload date:
  • Size: 8.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for swarmauri_certs_ocspverify-0.9.3.dev5.tar.gz
Algorithm Hash digest
SHA256 4e7cafcf293e94f6d003e51f047a9fb63b5814d548cc6f521cd58ff58d7b19c9
MD5 79e4cf353a24b2afcdb84d865e82fdb6
BLAKE2b-256 7255d77990ffc5bc255308b38deb8f2d0b0a4a1cebcd832e0cea3b3eaef91b32

See more details on using hashes here.

File details

Details for the file swarmauri_certs_ocspverify-0.9.3.dev5-py3-none-any.whl.

File metadata

  • Download URL: swarmauri_certs_ocspverify-0.9.3.dev5-py3-none-any.whl
  • Upload date:
  • Size: 9.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for swarmauri_certs_ocspverify-0.9.3.dev5-py3-none-any.whl
Algorithm Hash digest
SHA256 3c4c8a18420de98a41a99e97225e11f489bdd5b371d7f98bbb92caa34f4e88a2
MD5 3333b0138f4d197ad703e53829f0d5cb
BLAKE2b-256 848dd3ab052e4975aec9deaf8f239fdb82c0d2b1ff122009a8caa28de732530d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page