Explore the intricacies of cryptographic techniques with Balu, a Python library implementing a sophisticated multi-layer encryption system. Balu combines substitution, permutation, and XOR ciphers to offer a customizable and educational approach to data security.
Project description
balue
Balue is a Python package that implements a multi-layered encryption algorithm for educational purposes. It combines substitution, permutation, and XOR encryption techniques to provide a basic encryption and decryption functionality.
Features
- Substitution Cipher: Shifts each byte of the plaintext based on a key.
- Permutation Cipher: Shuffles the bytes of the text.
- XOR Cipher: XORs the shuffled bytes with the key.
Installation
Using Poetry
-
Install Poetry if not already installed:
curl -sSL https://install.python-poetry.org | python3 -
-
Clone the repository:
git clone git@github.com:aliezzahn/balue.git cd balue
-
Install the dependencies:
poetry install
Manual Installation
-
Clone the repository:
git clone git@github.com:aliezzahn/balue.git cd balue
-
Install the dependencies using
pip
:pip install -r requirements.txt
Usage
Encryption and Decryption Example
Here's how you can use the ComplexEncryptor
class to encrypt and decrypt a message.
- Create an encryptor instance with a secret key.
- Encrypt a plaintext message.
- Decrypt the ciphertext to get back the original message.
from balue.encryptor import ComplexEncryptor
# Initialize the encryptor with a secret key
key = "super_secret_key"
encryptor = ComplexEncryptor(key)
# Define the plaintext to be encrypted
plaintext = "This is a very secret message!"
# Encrypt the plaintext
encrypted = encryptor.encrypt(plaintext)
print("Encrypted:", encrypted)
# Decrypt the ciphertext
decrypted = encryptor.decrypt(encrypted['ciphertext'], encrypted['indices'])
print("Decrypted:", decrypted)
Running the Test Script
To test the encryption and decryption process, you can run the provided test script.
python tests/test_encryptor.py
Project Structure
balue/
│
├── README.md
├── balue/
│ ├── __init__.py
│ └── encryptor.py
└── tests/
└── test_encryptor.py
├── pyproject.toml
Security Considerations
This package is intended for educational purposes and should not be used for securing sensitive data in production environments. For real-world applications, rely on well-established cryptographic libraries and algorithms such as AES, RSA, and others provided by libraries like cryptography
, PyCrypto
, or PyCryptodome
.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Contributing
Contributions are welcome! Please open an issue or submit a pull request on GitHub.
Acknowledgments
- Inspired by classical encryption techniques and the need to understand basic cryptographic principles.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file balue-0.1.0.tar.gz
.
File metadata
- Download URL: balue-0.1.0.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.0rc1 Linux/6.5.0-35-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b40125ba2d7217e9ed94a4bc0c0639390106f7b6af2d6023298e9c362d7ea35e |
|
MD5 | 1e3bfe91e7cea678305e61041df35238 |
|
BLAKE2b-256 | 7e2071faa3f297ac01153c29ffa81046132d1c56a5008f6917733ae24fb5114e |
File details
Details for the file balue-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: balue-0.1.0-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.0rc1 Linux/6.5.0-35-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1537292f3ee088a18909ec572d68de56e9c61a8961f8bab120d3eb4a3f800db1 |
|
MD5 | f3f3c4020278e2cd311ff07944ec4850 |
|
BLAKE2b-256 | b971191a1942aec9433306c9a9767b0ab00453df0a0f362e373d94c77d9aa246 |