Metadata-Version: 2.1
Name: aes_pkcs5
Version: 1.0.1
Summary: Implementation of AES with CBC/ECB mode and padding scheme PKCS5
Home-page: https://github.com/Laerte/aes_pkcs5
Author: Laerte Pereira
Author-email: hi@laerte.dev
License: BSD
Project-URL: Documentation, https://aes-pkcs5.readthedocs.io
Project-URL: Source, https://github.com/Laerte/aes_pkcs5
Project-URL: Tracker, https://github.com/Laerte/aes_pkcs5/issues
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
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 :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
License-File: LICENSE

========
AESPKCS5
========

|CI| |PyPI| |Python Version| |docs| |codecov|

.. |PyPI| image:: https://img.shields.io/pypi/v/aes-pkcs5.svg
   :target: https://pypi.org/project/aes-pkcs5/
.. |CI| image:: https://github.com/Laerte/aes_pkcs5/actions/workflows/ci.yml/badge.svg
.. |Python Version| image:: https://img.shields.io/pypi/pyversions/aes-pkcs5.svg
   :target: https://pypi.org/project/aes-pkcs5/
.. |docs| image:: https://readthedocs.org/projects/aes-pkcs5/badge/?version=latest
    :alt: Documentation Status
    :scale: 100%
    :target: https://aes-pkcs5.readthedocs.io/en/latest/?badge=latest
.. |codecov| image:: https://codecov.io/gh/Laerte/aes_pkcs5/branch/main/graph/badge.svg?token=LX57VQB8ZB
   :target: https://codecov.io/gh/Laerte/aes_pkcs5
    

Python implementation of AES with CBC/ECB mode and padding scheme PKCS5.

============
Requirements
============
* Python 3.7+

Install
=======
You can install AESPKCS5 from PyPI with::

    pip install aes-pkcs5

=============
Documentation
=============
Documentation is available online at: https://aes-pkcs5.readthedocs.io/
