ORIGINA is the official registry that links every software application to its certified developer. No one can modify, copy, or distribute your code without your explicit authorization.
In a world where AI systems and third-party developers can copy, modify, and redistribute any software in seconds, code ownership has become a critical issue.
Traditional methods — software licenses, watermarks, obfuscation — are not enough. Having access to the files is all it takes to alter them.
ORIGINA solves this at the root: source code is encrypted with a cryptographic key that exists only while the authentic developer authenticates.
Every security mechanism has a weak point. ORIGINA is designed by eliminating the classic vulnerabilities.
AI models cannot analyze, replicate, or improve encrypted code. Only the authentic owner has access to the source.
The AES key is derived through 200,000 PBKDF2 iterations from information the server never stores. There is no "key file" to steal.
Even if someone knows your Developer ID, without the TOTP code refreshing every 30 seconds they cannot unlock anything.
You can transfer an app to another certified developer with an authenticated operation. Tracked and irreversible without your consent.
Every encrypted file includes a SHA-256 hash of the original source. Any unauthorized modification to the .locked file is detected immediately.
Every lock, unlock, and transfer is logged with timestamp, IP, and developer identity. Immutable audit log.
ORIGINA is not just security — it's a complete software identity management system.
Your Developer ID is unique and non-replicable. It is your digital signature as a software creator.
Each application receives an identifier cryptographically tied to you, generated via HMAC-SHA256.
The same standard used by governments and military. Each file is encrypted individually with a unique nonce.
View all your apps, encryption status, access history, and manage transfers.
Python command-line tool. One command to encrypt, one to decrypt. Integrates into any workflow.
FastAPI backend with interactive OpenAPI docs. Integrable into CI/CD pipelines and enterprise systems.
From first sign-up to full project protection, in under 5 minutes.
Create your account with email and password. Receive your unique Developer ID.
Scan the QR code with Google Authenticator. Your second factor is active.
Register your project and get an App ID cryptographically linked to your account.
Use the CLI origina lock. Your .py files become .locked. Only you can open them.
Every component is built on established cryptographic primitives and open standards.
Authenticated encryption. Guarantees confidentiality and integrity of every file. Detects any tampering.
200,000 iterations for key derivation. Makes brute-force computationally impractical.
6-digit codes changing every 30 seconds. Compatible with any authenticator app.
App ID generated as HMAC of Developer ID + server secret. Unpredictable, non-replicable.
Sessions use JSON Web Tokens with expiry. Passwords hashed with bcrypt factor 12.
The AES key is recalculated on-demand and never persisted. Even with DB access, no one can decrypt.
Registration is free. In 5 minutes your source code is protected with military-grade encryption.
Create your developer account →Use this ID with the ORIGINA CLI to encrypt your projects.
# Install dependencies pip install cryptography requests # Encrypt your project python origina.py lock --dev-id <YOUR_DEV_ID> --app-id <APP_ID> # Decrypt (requires TOTP) python origina.py unlock --dev-id <YOUR_DEV_ID> --app-id <APP_ID>