Universal Systems Runtime — experimental C core with Python bindings
Project description
usr — Universal Systems Runtime (pre‑release)
⚠️ Pre‑release / Experimental
This project is an early, curiosity‑driven build created to explore low‑level systems programming, binary processing, and cryptography.
It is NOT recommended for production use. This is the first real release after placeholders, published mainly for learning, experimentation, and architectural exploration.
✨ Overview
usr (Universal Systems Runtime) is a low‑level systems library written in C, with optional Python bindings, designed to experiment with:
- Binary & byte manipulation
- UTF‑8 / UTF‑16 handling
- Cryptographic primitives (SHA‑256, AES‑256‑IGE)
- Telegram‑style text entities & formatting
- Markdown ⇄ HTML ⇄ Entity round‑tripping
- Performance‑oriented, minimal abstractions
This project exists to understand how real systems libraries are built, not to replace existing production‑grade tools.
🧠 Project Philosophy
-
Written from scratch in C
-
Clear separation between core logic and language bindings
-
Focus on determinism, memory ownership, and correctness
-
Minimal abstractions, explicit APIs
-
Inspired by projects such as:
cryptgtgcrypto- Telegram MTProto internals
The goal is understanding systems internals, not shipping a black-box dependency.
🚧 Current Status
- ✔ Core C library: stable for experimentation
- ✔ Extensive internal tests (round‑trip, fuzz, stress)
- ✔ Python wrapper available (experimental)
- ❌ Not production‑ready
- ❌ Android / Termux has known limitations (documented)
📦 Installation
Supported environments
- Linux (native C / Python)
- macOS (native C / Python)
- Android / Termux (C‑only recommended)
Python (experimental)
pip install usr
The wheel bundles a native
libusr.sofor convenience.
From source (C library)
git clone https://github.com/ankit-chaubey/usr
cd usr
mkdir build && cd build
cmake ..
make
🧪 Example Usage (Python)
Below are basic, safe examples intended for learning and experimentation.
1️⃣ Text ⇄ Binary
from usr import from_text, to_text
raw = from_text("Hello usr 🚀")
print(raw) # b"Hello usr ð"
text = to_text(raw)
print(text) # Hello usr 🚀
This API demonstrates:
- UTF-8 safety
- Binary ownership handling
- Round-trip correctness
2️⃣ Hashing (SHA-256)
from usr import sha256
digest = sha256(b"test")
print(digest.hex())
Use this to:
- Verify integrity
- Compare against Python's
hashlib
3️⃣ AES-256-IGE (Experimental)
from usr import aes256_ige_encrypt, aes256_ige_decrypt
key = b"" * 32
iv = b""" * 32
msg = b"0123456789ABCDEF0123456789ABCDEF"
enc = aes256_ige_encrypt(msg, key, iv)
dec = aes256_ige_decrypt(enc, key, iv)
print(dec)
⚠️ Important:
- AES via
ctypesmay abort on Android / Termux - Works correctly on Linux/macOS
- Prefer pure C or NDK/JNI on Android
🗂️ Project Structure
usr/
├── src/ # C core implementation
│ ├── binary/ # text ⇄ binary
│ ├── bytes/ # buffer utilities
│ ├── crypto/ # SHA256, AES‑256‑IGE
│ ├── entities/ # Telegram‑style entities
│ ├── html/ # HTML ⇄ entity
│ ├── markdown/ # Markdown parser
│ └── utf8/ # UTF‑8 utilities
│
├── include/usr/ # Public C headers
├── python/usr/ # Python bindings (ctypes)
├── tests/ # Round‑trip & fuzz tests
├── examples/ # Usage examples
└── CMakeLists.txt # Build configuration
🧩 Available APIs
🔤 Binary / Text
from_text(str) -> bytesto_text(bytes) -> str
🔐 Cryptography
sha256(data: bytes) -> bytesaes256_ige_encrypt(data, key, iv)(experimental)aes256_ige_decrypt(data, key, iv)(experimental)
📝 Text Processing (C‑side)
- UTF‑8 decoding
- Markdown parsing (Telegram‑style)
- HTML ⇄ Entity conversion
- Entity normalization & round‑trip validation
📱 Android / Termux Note (Important)
On Android (Termux):
- ❌
ctypes+ native crypto may abort due to Bionic tagged‑pointer protection - ✔ Binary/text APIs work in pure C
- ✔ SHA‑256 works internally
This is a platform limitation, not a logic bug.
Recommended approaches on Android:
- Use pure‑Python fallbacks
- Or integrate the C core via NDK / JNI
This is how mature projects responsibly handle Android.
🧪 Testing
This project includes multiple layers of testing designed to validate correctness, not formal security guarantees.
Included tests
-
Round-trip tests Validate Markdown → HTML → Entity → HTML stability
-
Fuzz tests Randomized Telegram-style inputs with constrained grammar
-
Stress tests Allocation, deallocation, and repeated API usage
Running tests (C core)
cd build
ctest
Running Python tests (manual)
python - << 'EOF'
from usr import from_text, to_text, sha256
print(to_text(from_text("test")))
print(sha256(b"test").hex())
EOF
Tests are intentionally conservative and focus on learning behavior rather than adversarial security.
👤 Author & Credits
Author: Ankit Chaubey GitHub: https://github.com/ankit-chaubey
This project is:
- Built with curiosity, patience, and care
- Not affiliated with Telegram or any organization
Special thanks to the open-source community and projects like cryptg and tgcrypto for architectural inspiration and reference material.
🔗 Repository
This repository is the single source of truth for development, issues, experiments, and documentation.
👉 https://github.com/ankit-chaubey/usr
This repository contains:
- Full source code
- Build scripts
- Tests & experiments
- Documentation and notes
🧭 Final Note
This repository represents a learning milestone, not a finished product.
It documents real engineering trade‑offs: ABI boundaries, memory ownership, platform limitations, and performance considerations.
If you are reading this, you are looking at a hands‑on exploration of systems programming, not a polished framework.
Feedback, discussion, and curiosity are always welcome 🤝
This repository represents a learning milestone, not a finished product.
It is intentionally transparent about limitations and trade-offs. If you are reading this, you are looking at a hands-on exploration of systems engineering.
Feedback, discussion, and curiosity are always welcome 🤝
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
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 usr-0.1.2.tar.gz.
File metadata
- Download URL: usr-0.1.2.tar.gz
- Upload date:
- Size: 20.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96a64b67b4ff4bcae3abb96c63040799b1df016fd03394ca2c661c6765fbff97
|
|
| MD5 |
7e5dbd9f69ec19ee7c8e83595ad642ec
|
|
| BLAKE2b-256 |
d844cb8362432397d5557d08614e841a26ec61351d2bcc37da5ba1e4806a7ccc
|
Provenance
The following attestation bundles were made for usr-0.1.2.tar.gz:
Publisher:
publish.yml on ankit-chaubey/usr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
usr-0.1.2.tar.gz -
Subject digest:
96a64b67b4ff4bcae3abb96c63040799b1df016fd03394ca2c661c6765fbff97 - Sigstore transparency entry: 869243401
- Sigstore integration time:
-
Permalink:
ankit-chaubey/usr@ab85446590dad3400a22294d08644b3c0a6e959f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/ankit-chaubey
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ab85446590dad3400a22294d08644b3c0a6e959f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file usr-0.1.2-py3-none-any.whl.
File metadata
- Download URL: usr-0.1.2-py3-none-any.whl
- Upload date:
- Size: 17.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec479d6aa0dd3c515acf68be0bb4b2daed2addb0348f3907665896360480c8bb
|
|
| MD5 |
a3b71de8ea74c47f31009a180eed78f6
|
|
| BLAKE2b-256 |
fa52793508f29295036749b6cecb643833222a0d3eba4fb0e714c8031e8a6cec
|
Provenance
The following attestation bundles were made for usr-0.1.2-py3-none-any.whl:
Publisher:
publish.yml on ankit-chaubey/usr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
usr-0.1.2-py3-none-any.whl -
Subject digest:
ec479d6aa0dd3c515acf68be0bb4b2daed2addb0348f3907665896360480c8bb - Sigstore transparency entry: 869243403
- Sigstore integration time:
-
Permalink:
ankit-chaubey/usr@ab85446590dad3400a22294d08644b3c0a6e959f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/ankit-chaubey
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ab85446590dad3400a22294d08644b3c0a6e959f -
Trigger Event:
workflow_dispatch
-
Statement type: