Kaalka: Production-ready time-based encryption library for Python
Project description
Kaalka: Time-Based Encryption Library for Python
Kaalka is a robust, production-ready time-based encryption library for Python. It enables secure, non-trivial encryption and decryption of messages and files using either the current system time or a user-provided timestamp as the cryptographic key. Kaalka supports messaging, file transfer, chunked file encryption, and NTP-based workflows.
All cryptographic operations use custom Kaalka-style derivations (Sundial, Pulse, Resonance, Weave, Drum, Seal, Ledger) built on the Kaalka Drum cipher. No external crypto primitives are used. The code is fully tested and ready for production use.
Kaalka: Time-Based Encryption Library for Python
Kaalka is a robust, time-based encryption library for Python, inspired by the Kaalka Encryption Algorithm. It enables secure, non-trivial encryption and decryption of messages using either the current system time or a user-provided timestamp as the cryptographic key. Kaalka is suitable for secure messaging, cryptographic experiments, and time-sensitive data protection.
🚀 Features
- Time-based encryption: Use the current system time or any timestamp (HH:MM:SS) as the encryption key.
- Robust and unpredictable: Combines trigonometric functions, clock hand angles, and character indices for strong, non-trivial encryption.
- Easy integration: Simple Python API for encrypting and decrypting messages.
- NTP support: Includes KaalkaNTP for network time protocol-based encryption.
🔒 How the Algorithm Works
Kaalka transforms each character in your message using a key derived from the angles between the hour, minute, and second hands of a clock at a given time. The algorithm:
- Calculates angles for the provided or current time.
- Selects trigonometric functions based on the quadrant of each angle.
- Combines these values with the character's index and the time to generate a unique, non-reversible transformation for each character.
- Decryption reverses this process using the same timestamp.
Note: Encryption and decryption must use the same timestamp (or occur at the same second if using system time).
📦 Installation
pip install kaalka
📝 Usage
Unified Text, Image, and Media Encryption/Decryption
from kaalka import Kaalka
# Text encryption/decryption (system time)
kaalka = Kaalka()
message = "Hello, world!"
encrypted_message = kaalka.encrypt(message)
decrypted_message = kaalka.decrypt(encrypted_message)
# Text encryption/decryption (explicit time)
timestamp = "14:35:22"
encrypted_message = kaalka.encrypt(message, timestamp)
decrypted_message = kaalka.decrypt(encrypted_message, timestamp)
# File encryption/decryption (any file type, system time)
encrypted_file = kaalka.encrypt("test_image.jpg") # Produces test_image.kaalka
decrypted_file = kaalka.decrypt(encrypted_file) # Produces test_image.jpg
# File encryption/decryption (explicit time)
encrypted_file = kaalka.encrypt("test_data.csv", timestamp)
decrypted_file = kaalka.decrypt(encrypted_file, timestamp)
# Folder workflow example
import os, shutil
os.makedirs('encrypted', exist_ok=True)
os.makedirs('decrypted', exist_ok=True)
enc_path = kaalka.encrypt("test_image.jpg", timestamp)
shutil.move(enc_path, f'encrypted/test_image.kaalka')
dec_path = kaalka.decrypt('encrypted/test_image.kaalka', timestamp)
shutil.move(dec_path, f'decrypted/test_image.jpg')
Note:
- Encrypted files use only the
.kaalkaextension (e.g.,test_image.kaalka,video.kaalka,music.kaalka).- Decrypted files restore the original name and extension (e.g.,
test_image.jpg,video.mp4,music.mp3).- The library supports all file types, including images, videos, music, text, CSV, JSON, XML, and more.
- Encryption and decryption are lossless and robust for all binary formats.
KaalkaNTP Usage
from kaalkaNTP import KaalkaNTP
kaalka_ntp = KaalkaNTP()
# Use KaalkaNTP methods for NTP-based encryption
📂 File Structure
Kaalka-Encryption-Algorithm/
|-- kaalka/
| |-- file_encryptor.py
| |-- kaalka.py
| |-- __init__.py
| |-- __pycache__/
|-- kaalkaNTP/
| |-- kaalkaNTP.py
| |-- packet.py
| |-- __init__.py
|-- build/
| |-- lib/
| |-- kaalka/
| |-- kaalkaNTP/
|-- dist/
|-- kaalka.egg-info/
|-- LICENSE
|-- README.md
|-- requirements.txt
|-- setup.py
|-- .github/
| |-- workflows/
| |-- python-package.yml
|-- .git/
🔐 Security Notes
- If you do not provide a timestamp, the current system time is used for encryption and decryption. Encryption and decryption must occur at the same second for the result to be correct.
- For reproducibility and secure communication, always provide an explicit timestamp string (format: 'HH:MM:SS').
- The strength of encryption depends on the secrecy and unpredictability of the timestamp used.
📄 License
See the LICENSE file for details.
🤝 Contributing
Contributions, bug reports, and feature requests are welcome! Please open an issue or submit a pull request on GitHub.
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kaalka-5.0.0.tar.gz.
File metadata
- Download URL: kaalka-5.0.0.tar.gz
- Upload date:
- Size: 27.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7b864c8f49e855da021cd5505a58f5a6fb4572e31e860a4172f8934f2fd208b
|
|
| MD5 |
d73a2c530bb00fd9478d048b1bccd445
|
|
| BLAKE2b-256 |
f2545968fdcc1837a15b63db94c3a50f5c88f8d942d8b52801b1b00e0c7fef3f
|
File details
Details for the file kaalka-5.0.0-py3-none-any.whl.
File metadata
- Download URL: kaalka-5.0.0-py3-none-any.whl
- Upload date:
- Size: 29.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1344fd7cc987d315269087303a6825e339fc57242ac041617fe5581c6d27353f
|
|
| MD5 |
94ff071721fe768136d00d6967b600b6
|
|
| BLAKE2b-256 |
5e785404cce8cbc64a92d84f2cd528e1b0804648abd3f01426e31d187b1310b4
|