Metadata-Version: 2.1
Name: joselib
Version: 0.1.0b0
Summary: JOSE implementation in Python
Home-page: https://joselib.readthedocs.io/en/stable/
License: LGPL-3.0+
Keywords: jose,jws,jwe,jwt,json,web,token,security,signing
Author: Stephanos Kuma
Author-email: stephanos@kuma.ai
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Utilities
Requires-Dist: cryptography (>3.4)
Project-URL: Documentation, https://joselib.readthedocs.io/en/stable/
Project-URL: Repository, https://github.com/spapanik/joselib
Description-Content-Type: text/markdown

# joselib: A JOSE implementation in python

[![tests][test_badge]][test_url]
[![license][licence_badge]][licence_url]
[![pypi][pypi_badge]][pypi_url]
[![downloads][pepy_badge]][pepy_url]
[![code style: black][black_badge]][black_url]
[![build automation: yam][yam_badge]][yam_url]
[![Lint: ruff][ruff_badge]][ruff_url]

The JavaScript Object Signing and Encryption (JOSE) technologies - JSON
Web Signature (JWS), JSON Web Encryption (JWE), JSON Web Key (JWK), and
JSON Web Algorithms (JWA) - collectively can be used to encrypt and/or
sign content using a variety of algorithms. While the full set of
permutations is extremely large, and might be daunting to some, it is
expected that most applications will only use a small set of algorithms
to meet their needs.

## Links

- [Documentation]
- [Changelog]

[test_badge]: https://github.com/spapanik/joselib/actions/workflows/tests.yml/badge.svg
[test_url]: https://github.com/spapanik/joselib/actions/workflows/tests.yml
[licence_badge]: https://img.shields.io/badge/License-LGPL_v3-blue.svg
[licence_url]: https://github.com/spapanik/joselib/blob/main/docs/LICENSE.md
[pypi_badge]: https://img.shields.io/pypi/v/joselib
[pypi_url]: https://pypi.org/project/joselib
[pepy_badge]: https://pepy.tech/badge/joselib
[pepy_url]: https://pepy.tech/project/joselib
[black_badge]: https://img.shields.io/badge/code%20style-black-000000.svg
[black_url]: https://github.com/psf/black
[yam_badge]: https://img.shields.io/badge/build%20automation-yamk-success
[yam_url]: https://github.com/spapanik/yamk
[ruff_badge]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v1.json
[ruff_url]: https://github.com/charliermarsh/ruff
[Documentation]: https://joselib.readthedocs.io/en/stable/
[Changelog]: https://github.com/spapanik/joselib/blob/main/docs/CHANGELOG.md

