The Undetectable Language — a constructed cipher with Python API
Project description
Velthari
The Undetectable Language — a constructed cipher with a Python API that is 100% cross-compatible with the Velthari HTML browser tool.
A message encoded in Python decodes correctly in the HTML interface, and vice versa.
Installation
pip install velthari
The package ships as a compiled binary (Cython extension). No source code is distributed.
Usage
Basic encode / decode
import velthari
encoded = velthari.encode("meet at dawn")
# → 'ⲂⲟⲜⲑ ∴ ⲝⲓ ∴ ⲇ⨹ⲝⲆⲋ ⊕'
decoded = velthari.decode(encoded)
# → 'meet at dawn'
Password locking
locked = velthari.encode("secret message", password="mykey")
velthari.decode(locked, password="mykey") # → 'secret message'
velthari.decode(locked, password="wrongkey") # → garbled output, no error
Multi-layer encoding
# Encode with 3 layers — output is prefixed with ❰3❱
deep = velthari.encode("secret", layers=3)
# → '❰3❱ⲒⲟⲐⲀⲞ...'
# decode() auto-detects layer count from the ❰N❱ prefix
velthari.decode(deep) # → 'secret'
# Or specify explicitly
velthari.decode(deep, layers=3)
Steganography
Hide a secret message inside natural-looking cover text. The Velthari payload is embedded as invisible zero-width Unicode characters — completely undetectable to any reader or AI system.
# With a Groq API key (free at console.groq.com) — generates AI cover text
cover = velthari.hide(
"secret message",
cover_topic="the weather",
groq_api_key="gsk_..."
)
# Extract and decode
plaintext = velthari.extract(cover)
# → 'secret message'
Combining features
# Password-locked + multi-layer
locked_deep = velthari.encode("eyes only", password="atlas", layers=2)
velthari.decode(locked_deep, password="atlas") # → 'eyes only'
Cross-compatibility
The Velthari HTML interface and this Python package share the exact same cipher engine:
- Same 52 Coptic Unicode glyph set
- Same positional Fisher-Yates permutation with LCG seed
- Same Fibonacci vowel shifting
- Same null glyph injection every 7th character
- Same SHA-256 password hashing scheme
- Same base-26 inter-layer serialization with
❰N❱prefix
A message encoded in the HTML tool will decode with velthari.decode() and vice versa.
How the cipher works (overview)
Velthari maps English letters to Coptic Unicode glyphs through a position- and word-index-dependent permutation. Each letter's glyph depends on:
- Its position within the word
- The word's index in the sentence
- How many vowels appeared before it (for vowel encoding)
This means the same letter maps to different glyphs in different positions, making frequency analysis ineffective. The output is visually indistinguishable from actual Coptic script to any observer or linguistic database.
Security
The compiled extension (.so / .pyd) is machine code. The algorithm, glyph set, permutation seed formula, and all internal constants are not visible in the distributed package. Users interact with encode() and decode() as a black box.
License
Proprietary. All rights reserved.
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 Distributions
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 velthari-1.0.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: velthari-1.0.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 53.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfc104222d3d24461ac0fc47d25135a1148bb29191d146a924e3b09990e0ac6e
|
|
| MD5 |
b0b12a739334f8c7c628215d9cd9ff33
|
|
| BLAKE2b-256 |
b0fb26e013952a9ae459dd24f158ea1c82d90bacb1d68e9d0a15798024fe0422
|