Every high-ranking Purcius builder holds their own root key — born on your device, in airplane mode, split so no single loss is fatal, never touching a network.
The key that anchors your FQDN. You generate it, you split it, you hold it. No shared box, no vendor, no trust in anyone else.
Airplane-mode guard → mint → export each share separately → publish your _key line.
3.3 MB · arm64 · pure C.
Same SwiftUI ceremony over the same pure-C substrate. Apple requires a signed build.
How to get it ↓Via TestFlight / Xcode. Source included.
operator.pub + your _key.<fqdn> line. The private root never leaves un-split.app-debug.apk — or open Files → Downloads and tap it._key line. Done.Any recent 64-bit Android phone. Nothing to take on trust — the app declares no network permission; verify against the source bundle below.
Apple won’t sideload a raw file the way Android takes an APK, so iOS needs a signed build. Two paths:
brew install xcodegen → cd ios && xcodegen generate → open in Xcode, set your Team, Run on your device.Same pure-C substrate, same ceremony. iOS can’t read airplane-mode state, so the app blocks minting while any network is up — turn on Airplane Mode and it goes green.
Tap Copy on each line, paste into Termux, run. Do 1–2 online, then go airplane mode.
pkg install clang makecurl -LO https://purcius.net/genesis/purcius-genesis-src.tar.gztar xzf purcius-genesis-src.tar.gz && cd purcius-genesismake && ./genesis-cli selftestmkdir out && ./genesis-cli mint 5 3 your-fqdn outWrites out/operator.pub, out/_key.txt, and out/share-01…05.share. Scatter the 5 shares to 5 separate places, publish _key.txt + operator.pub, then reconnect.
./genesis-cli recover out/operator.key out/share-01.share out/share-03.share out/share-05.shareA thin shell over the Purcius crypto substrate: ed25519 keypair + shamir GF(256) split/combine, both pure C, both tested, vendored self-contained. The app adds a UI and an airplane-mode guard — nothing more. Auth & key material are substrate (pure C) by rule, never a per-app concern.
Source: purcius-genesis-src.tar.gz — self-contained, builds anywhere.
Your operator root is the trust anchor for everything you build on Purcius. Read the full security model — what it does, why it's critical, and exactly how to recover — and save it as a PDF for your records.
Security & Recovery →