Metadata-Version: 2.4
Name: core-ciphers
Version: 1.3.0
Summary: This project/library contains common elements related to ciphers...
Author-email: Alejandro Cora González <alek.cora.glez@gmail.com>
Maintainer: Alejandro Cora González
License-Expression: MIT
Project-URL: Homepage, https://gitlab.com/bytecode-solutions/core/core-ciphers
Project-URL: Repository, https://gitlab.com/bytecode-solutions/core/core-ciphers
Project-URL: Documentation, https://core-ciphers.readthedocs.io/en/latest/
Project-URL: Issues, https://gitlab.com/bytecode-solutions/core/core-ciphers/-/issues
Project-URL: Changelog, https://gitlab.com/bytecode-solutions/core/core-ciphers/-/blob/master/CHANGELOG.md
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: pycryptodome>=3.21.0
Provides-Extra: dev
Requires-Dist: core-dev-tools>=2.0.0; extra == "dev"
Requires-Dist: core-tests>=2.1.0; extra == "dev"
Dynamic: license-file

core-ciphers
===============================================================================

This project/library contains common elements related to ciphers...

===============================================================================

.. image:: https://img.shields.io/pypi/pyversions/core-ciphers.svg
    :target: https://pypi.org/project/core-ciphers/
    :alt: Python Versions

.. image:: https://img.shields.io/badge/license-MIT-blue.svg
    :target: https://gitlab.com/bytecode-solutions/core/core-ciphers/-/blob/main/LICENSE
    :alt: License

.. image:: https://gitlab.com/bytecode-solutions/core/core-ciphers/badges/release/pipeline.svg
    :target: https://gitlab.com/bytecode-solutions/core/core-ciphers/-/pipelines
    :alt: Pipeline Status

.. image:: https://readthedocs.org/projects/core-ciphers/badge/?version=latest
    :target: https://readthedocs.org/projects/core-ciphers/
    :alt: Docs Status

.. image:: https://img.shields.io/badge/security-bandit-yellow.svg
    :target: https://github.com/PyCQA/bandit
    :alt: Security

|


Security - Cryptographic Library
===============================================================================

This project uses **``pycryptodome``** (version >=3.21.0) for cryptographic
operations, not the deprecated ``pycrypto`` library.

**Important Note:** Security scanners like ``bandit`` may report false
positives (B413 warnings) when scanning this codebase. This occurs because
both ``pycrypto`` (deprecated) and ``pycryptodome`` (actively maintained) use
the same ``Crypto`` import namespace, causing scanners to incorrectly
flag the imports as deprecated.

**Verification:**
- Check ``pyproject.toml`` dependencies: ``pycryptodome>=3.21.0``.
- ``pycryptodome`` is actively maintained and regularly updated.
- It is the recommended drop-in replacement for the deprecated ``pycrypto``.

The B413 bandit warnings can be safely ignored as they are false positives.


Installation
===============================================================================

Install from PyPI using pip:

.. code-block:: bash

    pip install core-ciphers
    uv pip install core-ciphers  # Or using UV...


Features
===============================================================================

**Core Components:**

* **ICipher Interface** - Abstract base class for implementing custom cipher algorithms.
* **AESCipher** - Advanced Encryption Standard (AES) implementation with multiple cipher modes.

**AES Cipher Capabilities:**

* **Key Sizes:** Support for 128, 192, and 256-bit encryption keys (MODE_SIV requires a double-length key: 32, 48, or 64 bytes)
* **Authenticated Encryption Modes:**
    - MODE_GCM (Galois/Counter Mode) - Default, recommended for most use cases
    - MODE_EAX (EAX Mode)
    - MODE_CCM (Counter with CBC-MAC)
    - MODE_SIV (Synthetic Initialization Vector)
    - MODE_OCB (Offset Codebook Mode)

* **Block Cipher Modes:**
    - MODE_ECB (Electronic Code Book)
    - MODE_CBC (Cipher Block Chaining)

* **Stream Cipher Modes:**
    - MODE_CFB (Cipher Feedback)
    - MODE_OFB (Output Feedback)
    - MODE_CTR (Counter Mode)

**Additional Features:**

* Automatic key generation if not provided.
* Automatic padding for modes that require it (ECB, CBC).
* Authentication tag generation and verification for authenticated modes.
* Configurable character encoding (default: UTF-8).
* Hex-encoded output for easy serialization.
* Built on **pycryptodome** for secure, actively maintained cryptographic operations.


Quick Start
===============================================================================

Installation
-------------------------------------------------------------------------------

Install the package:

.. code-block:: bash

    pip install core-ciphers
    uv pip install core-ciphers  # Or using UV...
    pip install -e ".[dev]"    # For development...


Setting Up Environment
-------------------------------------------------------------------------------

1. Install required libraries:

.. code-block:: bash

    pip install --upgrade pip
    pip install virtualenv

2. Create Python virtual environment:

.. code-block:: bash

    virtualenv --python=python3.12 .venv

3. Activate the virtual environment:

.. code-block:: bash

    source .venv/bin/activate

Install packages
-------------------------------------------------------------------------------

.. code-block:: bash

    pip install .
    pip install -e ".[dev]"

Check tests and coverage
-------------------------------------------------------------------------------

.. code-block:: shell

    python manager.py run-tests
    python manager.py run-coverage


Contributing
===============================================================================

Contributions are welcome! Please:

1. Fork the repository
2. Create a feature branch
3. Write tests for new functionality
4. Ensure all tests pass: ``python -m unittest discover -s tests -p "tests_*.py"``
5. Run linting: ``pylint core_ciphers``
6. Run security checks: ``bandit -r core_ciphers``
7. Submit a pull request


License
===============================================================================

This project is licensed under the MIT License. See the LICENSE file for details.


Links
===============================================================================

* **Documentation:** https://core-ciphers.readthedocs.io/en/latest/
* **Repository:** https://gitlab.com/bytecode-solutions/core/core-ciphers
* **Issues:** https://gitlab.com/bytecode-solutions/core/core-ciphers/-/issues
* **Changelog:** https://gitlab.com/bytecode-solutions/core/core-ciphers/-/blob/master/CHANGELOG.md
* **PyPI:** https://pypi.org/project/core-ciphers/


Support
===============================================================================

For questions or support, please open an issue on GitLab or contact the maintainers.


Authors
===============================================================================

* **Alejandro Cora González** - *Initial work* - alek.cora.glez@gmail.com
