YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Sovereign Temporal Root
Author: Ahmad Ali Parr
Trust: Bel Esprit D'Accord Irrevocable Trust Β· EIN 42-697643
A cryptographically gated wormhole that only exists for a specific machine, at a specific time, with a specific key.
What It Is
Sovereign Temporal Root is a zero-coordination cryptographic protocol:
- Hardware-bound β key derived from motherboard UUID + CPU ID + machine ID composite
- Temporal-bound β key rotates every epoch (
floor(unix / window_seconds)) - Stealth β no handshake, no SNI, no certificates; ghost port effect
- Orthogonal nonces β TX/RX streams use separate nonces, no two-time pad
key = SHA-512(salt || hardware_composite || epoch)[:32] # 256-bit ChaCha20
Client and server derive identical keys via NTP-synced epoch. No exchange. No coordination.
Core Mathematics
composite = MB_UUID | CPU_ID | MACHINE_ID
epoch = floor(time.time() / window_seconds)
digest = SHA-512(SOVEREIGN_SALT || composite || epoch)
key = digest[:32] # 256-bit
nonce_tx = 0 || packet_counter # orthogonal TX
nonce_rx = 1 || packet_counter # orthogonal RX
Killer Feature: Ghost Port Effect
Captured keys are dead assets. An attacker who captures today's key holds a corpse β the server has already rotated. No revocation needed. Time kills it.
Epoch N-3 ββββββββββββ EXPIRED β USELESS
Epoch N-2 ββββββββββββ EXPIRED β USELESS
Epoch N-1 ββββββββββββ EXPIRED β USELESS
Epoch N ββββββββββββ ACTIVE β VALID NOW
Epoch N+1 Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β· FUTURE β UNKNOWN
Live Demo
snapkittywest.github.io/sovereign-temporal-root
Runs real crypto.subtle.digest('SHA-512') in the browser. Same output as Python hashlib.sha512. No mock.
Architecture
| Property | Value |
|---|---|
| Cipher | ChaCha20 |
| KDF | SHA-512, 256-bit output |
| Key rotation | Every epoch (default: 86400s) |
| Binding | Hardware-composite (non-exportable) |
| Coordination | Zero (NTP sync only) |
| Port | 0.0.0.0:4433, no SNI, no certs |
| Drift buffer | Optional (check epoch & epoch-1) |
Build
The live demo is a self-contained index.html. No dependencies, no build step.
open index.html
# or serve locally:
python -m http.server 8000
Β© 2026 Bel Esprit D'Accord Irrevocable Trust Β· Patent Pending Β· Built for contested environments