Skip to main content

In-memory key provider for development and testing

Project description

Swarmauri Logo

PyPI - Downloads Hits PyPI - Python Version PyPI - License PyPI - swarmauri_keyprovider_local

Swarmauri Local Key Provider

Provides a pure in-memory implementation of the KeyProviderBase suitable for local development, unit testing, and rapid prototyping without any external infrastructure.

Capabilities

  • Generate symmetric AES-256-GCM keys and several asymmetric algorithms (Ed25519, X25519, RSA-OAEP/PSS-SHA256, and ECDSA P-256-SHA256).
  • Import existing key material and rotate to new versions on demand.
  • Retrieve stored keys (optionally including the secret material) and list available versions.
  • Export public material as individual JWKs or aggregate JWKS documents.
  • Produce cryptographically secure random bytes or derive material using HKDF.
  • Destroy keys when they are no longer needed to keep local environments tidy.

Installation

Choose the tool that best matches your workflow:

# pip
pip install swarmauri_keyprovider_local

# Poetry
poetry add swarmauri_keyprovider_local

# uv
uv add swarmauri_keyprovider_local

Quickstart

The example below mirrors swarmauri_keyprovider_local.examples.basic_usage and demonstrates how to create, store, and retrieve a symmetric key.

import asyncio
from swarmauri_keyprovider_local import LocalKeyProvider
from swarmauri_core.key_providers.types import (
    ExportPolicy,
    KeyAlg,
    KeyClass,
    KeySpec,
)
from swarmauri_core.crypto.types import KeyUse


async def run_example() -> str:
    """Create and retrieve a symmetric key using LocalKeyProvider."""

    provider = LocalKeyProvider()
    spec = KeySpec(
        klass=KeyClass.symmetric,
        alg=KeyAlg.AES256_GCM,
        uses=(KeyUse.ENCRYPT,),
        export_policy=ExportPolicy.SECRET_WHEN_ALLOWED,
    )
    created = await provider.create_key(spec)
    fetched = await provider.get_key(created.kid, include_secret=True)
    assert fetched.material is not None
    return fetched.kid


if __name__ == "__main__":
    print(asyncio.run(run_example()))

Rotate, export, and derive

Once you have a provider instance, additional asynchronous helpers are available to manage keys and metadata:

# Rotate the current key in-place (keeps the same KID with a new version)
rotated = await provider.rotate_key(created.kid)

# List available versions for auditing or debugging
versions = await provider.list_versions(created.kid)

# Export public material
jwk = await provider.get_public_jwk(created.kid)
jwks = await provider.jwks()

# Destroy keys when finished
await provider.destroy_key(created.kid)

# Generate bytes or derive new material locally
random_bytes = await provider.random_bytes(32)
derived = await provider.hkdf(b"ikm", salt=b"salt", info=b"context", length=32)

Want to help?

If you want to contribute to swarmauri-sdk, read up on our guidelines for contributing that will help you get started.

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_keyprovider_local-0.2.0.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

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

swarmauri_keyprovider_local-0.2.0-py3-none-any.whl (12.2 kB view details)

Uploaded Python 3

File details

Details for the file swarmauri_keyprovider_local-0.2.0.tar.gz.

File metadata

  • Download URL: swarmauri_keyprovider_local-0.2.0.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","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_keyprovider_local-0.2.0.tar.gz
Algorithm Hash digest
SHA256 80bc53e706d50d9b749b87c355777734a989d63977d663749239547ddd22d06c
MD5 085fadf52e60514ad04fc71b6aae57ff
BLAKE2b-256 0c187933935b7a9dd1b352288de291389bd461d7de191d80ae172f7fa7fda452

See more details on using hashes here.

File details

Details for the file swarmauri_keyprovider_local-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: swarmauri_keyprovider_local-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 12.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","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_keyprovider_local-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fc84d62b61851468c71a80574c144e8b32121b615ea2ce4f93e9ade985f1abfc
MD5 f2bb79d9840a7bbdb5776741bc8fbf86
BLAKE2b-256 2b4cb65069b40ab9f886097277bd9a8adf52c5aad67f2b144be47accc79fbb22

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