Skip to main content

Azure Key Vault certificate utilities for the Swarmauri ecosystem

Project description

Swarmauri Logo

PyPI - Downloads Hits PyPI - Python Version PyPI - License PyPI - swarmauri_certs_azure


swarmauri_certs_azure

Community-maintained utilities for working with X.509 certificates via Azure Key Vault.

Features

  • AzureKeyVaultCertService adapter that plugs into Swarmauri's certificate service architecture.
  • RFC-aligned helpers for serial number generation (RFC 5280), PEM formatting (RFC 7468), and PKCS#10 CSR creation (RFC 2986).
  • Native DefaultAzureCredential support so you can reuse the same authentication chain across tools.
  • Works with RSA 2048-bit key material—perfect for Key Vault-backed certificate issuance flows.

Prerequisites

  • Python 3.10 or newer.
  • An Azure Key Vault enabled for the Certificates and Keys resource providers.
  • Exportable RSA key material (PEM) or an Azure Key Vault key that can be exported for CSR signing.
  • Azure credentials configured for DefaultAzureCredential (e.g., AZURE_CLIENT_ID, managed identity, or CLI login).

Installation

# pip
pip install swarmauri_certs_azure

# poetry
poetry add swarmauri_certs_azure

# uv (pyproject-based projects)
uv add swarmauri_certs_azure

Quickstart

Generate a CSR using AzureKeyVaultCertService and store it for downstream issuance:

import asyncio
from pathlib import Path

from azure.identity import DefaultAzureCredential

from swarmauri_certs_azure.certs import AzureKeyVaultCertService
from swarmauri_core.crypto.types import KeyRef


async def main() -> None:
    service = AzureKeyVaultCertService(
        vault_url="https://example-vault.vault.azure.net/",
        credential=DefaultAzureCredential(),
    )

    key_ref = KeyRef(material=Path("app-private-key.pem").read_bytes())
    csr_bytes = await service.create_csr(
        key=key_ref,
        subject={"CN": "app.example.com"},
        san={"dns": ["app.example.com", "www.app.example.com"]},
    )

    Path("app.csr").write_bytes(csr_bytes)
    print("CSR written to app.csr")


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

Integrate with Azure Certificate Workflows

After generating the CSR, import it into Azure Key Vault or an external CA:

from pathlib import Path

from azure.identity import DefaultAzureCredential
from azure.keyvault.certificates import CertificateClient

vault_url = "https://example-vault.vault.azure.net/"
client = CertificateClient(vault_url=vault_url, credential=DefaultAzureCredential())

csr_bytes = Path("app.csr").read_bytes()

poller = client.begin_create_certificate(
    certificate_name="app-cert",
    policy={
        "contentType": "application/x-pem-file",
        "csr": csr_bytes,
    },
)

certificate = poller.result()
print("Certificate operation state:", certificate.properties.x509_thumbprint)

For external issuance, submit app.csr to your CA, then store the returned certificate chain back in Key Vault using set_certificate_contacts and import_certificate.

Testing

Run tests with:

uv run --package swarmauri_certs_azure --directory community pytest

Best Practices

  • Prefer managed identities or workload identity federation over client secrets in production.
  • Scope Key Vault permissions tightly (get, sign, unwrapKey) for the keys used by this service.
  • Rotate keys and certificates ahead of expiry; the helper functions simplify CSR generation for renewals.
  • Persist generated CSRs and issued certificates securely to aid in auditing and disaster recovery.

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_azure-0.3.3.dev19.tar.gz (8.4 kB view details)

Uploaded Source

Built Distribution

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

swarmauri_certs_azure-0.3.3.dev19-py3-none-any.whl (9.3 kB view details)

Uploaded Python 3

File details

Details for the file swarmauri_certs_azure-0.3.3.dev19.tar.gz.

File metadata

  • Download URL: swarmauri_certs_azure-0.3.3.dev19.tar.gz
  • Upload date:
  • Size: 8.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","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_azure-0.3.3.dev19.tar.gz
Algorithm Hash digest
SHA256 a2751f242d0284a0eb547571e5314c88131de6f1db8468dd2e845ae27fe5afbb
MD5 ca018b9ab54561d347b947d2832178cc
BLAKE2b-256 828fe9fa3b882972f9462e30577b9a958e6953de9259966979e50fb95723ea9e

See more details on using hashes here.

File details

Details for the file swarmauri_certs_azure-0.3.3.dev19-py3-none-any.whl.

File metadata

  • Download URL: swarmauri_certs_azure-0.3.3.dev19-py3-none-any.whl
  • Upload date:
  • Size: 9.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","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_azure-0.3.3.dev19-py3-none-any.whl
Algorithm Hash digest
SHA256 32bdbde9adc760be67da6d8b37a8f82ecc8fa73bc6f2c01e066958a658cdf9eb
MD5 d82bd94c669fc629ab78f21ddab97b72
BLAKE2b-256 bdaa66d3bc644620103a65d6fc99e0c22fff677e879568c41c22e0321638d41e

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