Metadata-Version: 2.3
Name: swarmauri_keyprovider_aws_kms
Version: 0.3.0.dev4
Summary: AWS KMS KeyProvider for Swarmauri
License: Apache-2.0
Author: Swarmauri
Author-email: opensource@swarmauri.com
Requires-Python: >=3.10,<3.13
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Provides-Extra: docs
Provides-Extra: perf
Requires-Dist: boto3 (>=1.28.0)
Requires-Dist: cryptography
Requires-Dist: mkdocs ; extra == "docs"
Requires-Dist: pytest-benchmark (>=4.0.0) ; extra == "perf"
Requires-Dist: swarmauri_base
Requires-Dist: swarmauri_core
Requires-Dist: swarmauri_standard
Description-Content-Type: text/markdown

# Swarmauri AWS KMS Key Provider

Community plugin providing an AWS KMS backed `KeyProvider` for Swarmauri.

## Features
- Manage RSA and AES keys via AWS KMS
- Publish JWKs following [RFC 7517](https://datatracker.ietf.org/doc/html/rfc7517)
- Generate cryptographically secure random bytes

## Installation
```bash
pip install swarmauri_keyprovider_aws_kms
```

## Usage
```python
from swarmauri_keyprovider_aws_kms import AwsKmsKeyProvider

provider = AwsKmsKeyProvider(region="us-east-1")
```

