Skip to main content

Remote CA certificate service for Swarmauri

Project description

Swamauri Logo

Swarmauri Remote CA Cert Service

A certificate enrollment bridge implementing the ICertService interface and forwarding CSRs to a remote Certificate Authority.

Features:

  • Posts CSRs to a remote endpoint and returns issued certificates.
  • Minimal parsing helpers for certificate snippets.
  • Designed around X.509 as defined in RFC 5280 and Enrollment over Secure Transport (EST) in RFC 7030.

Installation

pip install swarmauri_certs_remote_ca

Entry Point

The service registers under the swarmauri.certs entry point as RemoteCaCertService.

Usage

The service is asynchronous and expects an existing CSR (certificate signing request) in PEM or DER form. Configure the remote CA endpoint and submit the CSR to receive the issued certificate:

import asyncio
import base64
import json
import httpx
from swarmauri_certs_remote_ca import RemoteCaCertService

csr = b"example-csr"
cert_bytes = b"example-cert"


async def main() -> None:
    async def handler(request: httpx.Request) -> httpx.Response:
        data = json.loads(request.content)
        assert base64.b64decode(data["csr"]) == csr
        return httpx.Response(200, json={"cert": base64.b64encode(cert_bytes).decode()})

    transport = httpx.MockTransport(handler)
    svc = RemoteCaCertService("https://ca.example/sign")
    svc._client = httpx.AsyncClient(transport=transport)

    cert = await svc.sign_cert(csr, {"kind": "dummy"})
    print(cert)


asyncio.run(main())

The example above mocks a CA using httpx.MockTransport. In real scenarios RemoteCaCertService posts the CSR to the configured endpoint and returns the certificate bytes supplied by the remote CA.

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_remote_ca-0.3.0.dev2.tar.gz (7.9 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_remote_ca-0.3.0.dev2.tar.gz.

File metadata

File hashes

Hashes for swarmauri_certs_remote_ca-0.3.0.dev2.tar.gz
Algorithm Hash digest
SHA256 409556b7bef6a8c9593163836094b5cacc5850b0101ee4662335426142dfdeaf
MD5 33f21c0605c81c9e2d9564f582bc70da
BLAKE2b-256 9d9ed61a1543cdf4ba976eac69d6b21856d837c843c8472901e249af4e2aed79

See more details on using hashes here.

File details

Details for the file swarmauri_certs_remote_ca-0.3.0.dev2-py3-none-any.whl.

File metadata

File hashes

Hashes for swarmauri_certs_remote_ca-0.3.0.dev2-py3-none-any.whl
Algorithm Hash digest
SHA256 929f5969cba71e5408df8f7ea21fe00c039b2d89341ae829962b17c37075293a
MD5 2a0a1a59cc0dfc9675c8b4550917ff1f
BLAKE2b-256 1d1f1d298cc4e1843ec218ba417a596ca6f3451b066001172ef813454fa43a4a

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