Metadata-Version: 2.4
Name: swarmauri_cipher_suite_jwa
Version: 0.2.0.dev2
Summary: JWA-focused cipher suite for Swarmauri
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: swarmauri,sdk,standards,cipher,suite,jwa,cryptography,JSON Web Algorithms,RFC 7518,JWS,JWE,EdDSA,PS256,PS384,PS512,ES256,ES384,ES512,A128GCM,A192GCM,A256GCM,RSA-OAEP,RSA-OAEP-256,A256KW
Author: Jacob Stewart
Author-email: jacob@swarmauri.com
Requires-Python: >=3.10,<3.13
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Security :: Cryptography
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Dist: swarmauri_base
Requires-Dist: swarmauri_core
Description-Content-Type: text/markdown

![Swarmauri Logo](https://github.com/swarmauri/swarmauri-sdk/blob/master/assets/swarmauri.brand.theme.svg)

<p align="center">
    <a href="https://pypi.org/project/swarmauri_cipher_suite_jwa/">
        <img src="https://img.shields.io/pypi/dm/swarmauri_cipher_suite_jwa" alt="PyPI - Downloads"/></a>
    <a href="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/swarmauri_cipher_suite_jwa/">
        <img alt="Hits" src="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/swarmauri_cipher_suite_jwa.svg"/></a>
    <a href="https://pypi.org/project/swarmauri_cipher_suite_jwa/">
        <img src="https://img.shields.io/pypi/pyversions/swarmauri_cipher_suite_jwa" alt="PyPI - Python Version"/></a>
    <a href="https://pypi.org/project/swarmauri_cipher_suite_jwa/">
        <img src="https://img.shields.io/pypi/l/swarmauri_cipher_suite_jwa" alt="PyPI - License"/></a>
    <a href="https://pypi.org/project/swarmauri_cipher_suite_jwa/">
        <img src="https://img.shields.io/pypi/v/swarmauri_cipher_suite_jwa?label=swarmauri_cipher_suite_jwa&color=green" alt="PyPI - swarmauri_cipher_suite_jwa"/></a>
</p>

---

# Swarmauri Cipher JWA

Normalization-centric cipher suite that maps JSON Web Algorithm (JWA) names
into provider-friendly descriptors for Swarmauri crypto and signing
implementations.

Implements the algorithm profiles defined in
[RFC 7518: JSON Web Algorithms (JWA)](https://datatracker.ietf.org/doc/html/rfc7518).

## Features

- Centralizes JWA algorithm allow-lists for signing, encryption, and key
  management operations
- Provides dialect translation helpers for COSE identifiers and provider
  metadata
- Supplies sensible defaults so crypto providers can delegate algorithm
  selection to the suite
- Enforces consistent tag lengths and parameter shapes for AES-GCM and RSA-PSS

## Installation

### pip

```bash
pip install swarmauri_cipher_suite_jwa
```

### Poetry

```bash
poetry add swarmauri_cipher_suite_jwa
```

### uv

To add the dependency to a `pyproject.toml` managed by `uv`:

```bash
uv add swarmauri_cipher_suite_jwa
```

Or install it into the active environment:

```bash
uv pip install swarmauri_cipher_suite_jwa
```

## Usage

```python
from swarmauri_cipher_suite_jwa import JwaCipherSuite
from swarmauri_core.crypto.types import KeyRef, KeyType, KeyUse, ExportPolicy

# Construct a key reference representative of the caller's key inventory
key = KeyRef(
    kid="demo-rsa",
    version=1,
    type=KeyType.RSA,
    uses=(KeyUse.SIGN, KeyUse.VERIFY),
    export_policy=ExportPolicy.PUBLIC_ONLY,
)

suite = JwaCipherSuite(name="default-jwa")

# Resolve the provider-facing descriptor for a signing request
descriptor = suite.normalize(op="sign", alg="PS256", key=key)
print(descriptor["mapped"]["provider"])  # -> "PS256"
print(descriptor["params"]["saltBits"])   # -> 256 (derived default)
```

`normalize` returns a structured dictionary containing the canonical algorithm,
per-dialect aliases, policy constraints, and defaulted parameters. Crypto and
signing providers consume this descriptor to select the correct primitives
without re-implementing JWA policy logic.

## Entry Point

The suite registers under the `swarmauri.cipher_suites` entry point as
`JwaCipherSuite`.

## Want to help?

If you want to contribute to swarmauri-sdk, read up on our
[guidelines for contributing](https://github.com/swarmauri/swarmauri-sdk/blob/master/CONTRIBUTING.md)
that will help you get started.

