Metadata-Version: 2.4
Name: wheezy.security
Version: 3.2.2
Summary: A lightweight security/cryptography library
Author-email: Andriy Kornatskyy <andriy.kornatskyy@live.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/akornatskyy/wheezy.security
Project-URL: Source, https://github.com/akornatskyy/wheezy.security
Project-URL: Issues, https://github.com/akornatskyy/wheezy.security/issues
Keywords: security,ticket,encryption,cryptography,pycrypto,pycryptodome
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
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: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Security
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: cython
Requires-Dist: Cython>=3.0; extra == "cython"
Requires-Dist: setuptools>=61.0; extra == "cython"
Provides-Extra: cryptography
Requires-Dist: cryptography>=46.0.5; extra == "cryptography"
Provides-Extra: pycryptodome
Requires-Dist: pycryptodome>=3.23.0; extra == "pycryptodome"
Provides-Extra: pycryptodomex
Requires-Dist: pycryptodomex>=3.23.0; extra == "pycryptodomex"
Dynamic: license-file

# wheezy.security

[![tests](https://github.com/akornatskyy/wheezy.security/actions/workflows/tests.yml/badge.svg)](https://github.com/akornatskyy/wheezy.security/actions/workflows/tests.yml)
[![Coverage Status](https://coveralls.io/repos/github/akornatskyy/wheezy.security/badge.svg?branch=master)](https://coveralls.io/github/akornatskyy/wheezy.security?branch=master)
[![Documentation Status](https://readthedocs.org/projects/wheezysecurity/badge/?version=latest)](https://wheezysecurity.readthedocs.io/en/latest/?badge=latest)
[![pypi version](https://badge.fury.io/py/wheezy.security.svg)](https://badge.fury.io/py/wheezy.security)

[wheezy.security](https://pypi.org/project/wheezy.security/) is a
[python](https://www.python.org) package written in pure Python code. It
is a lightweight security library that provides integration with:

- [cryptography](https://pypi.org/project/cryptography/) - cryptography
  is a package which provides cryptographic recipes and primitives to
  Python developers.
- [pycryptodome](https://www.pycryptodome.org) - PyCryptodome
  is a fork of PyCrypto. It brings several enhancements.
- [pycryptodomex](https://www.pycryptodome.org) - PyCryptodomex
  is a library independent of the PyCrypto.

It is optimized for performance, well tested and documented.

Resources:

- [source code](https://github.com/akornatskyy/wheezy.security),
  and [issues](https://github.com/akornatskyy/wheezy.security/issues)
  tracker are available on
  [github](https://github.com/akornatskyy/wheezy.security)
- [documentation](https://wheezysecurity.readthedocs.io/en/latest/)

## Install

[wheezy.security](https://pypi.org/project/wheezy.security/) requires
[python](https://www.python.org) version 3.10+. It is independent of operating
system. You can install it from
[pypi](https://pypi.org/project/wheezy.security/) site:

```sh
pip install -U wheezy.security
```

If you would like take benefit of one of cryptography library that has
built-in support specify extra requirements:

```sh
pip install wheezy.security[cryptography]
pip install wheezy.security[pycryptodome]
pip install wheezy.security[pycryptodomex]
```

If you run into any issue or have comments, go ahead and add on
[github](https://github.com/akornatskyy/wheezy.security).
