0nVault Container System
A single .0nv file that holds your entire AI orchestration context.
The .0nv container format is a compact binary that bundles encrypted semantic layers, digital signatures, integrity seals, and metadata into one portable file. Create, open, verify, and transfer containers with cryptographic guarantees.
Binary Format Structure
Container Operations
Create
0nmcp vault sealEncrypt and package layers into a .0nv container
Open
0nmcp vault unsealDecrypt and extract layers from a .0nv container
Verify
0nmcp vault verifyVerify the Seal of Truth without decrypting
Fingerprint
0nmcp vault fingerprintGenerate hardware-bound fingerprint for machine locking
Frequently Asked Questions
What is the .0nv file format?
The .0nv format is a binary container that packages 7 encrypted semantic layers, digital signatures, integrity seals, and transfer logs into a single portable file. It starts with the magic bytes '0NV1' followed by versioned sections.
How large is a typical .0nv container?
A typical container with all 7 layers populated ranges from 2KB to 50KB depending on the complexity of your workflows and number of credentials. The binary format is significantly more compact than equivalent JSON.
Can I version control .0nv files?
While .0nv files are binary and not ideal for line-by-line diffs, they work well with Git LFS. Each container includes a version field and timestamp, and the Seal of Truth provides content-addressed identification.
What happens if a .0nv file is corrupted?
The Seal of Truth verification will immediately detect any corruption. AES-256-GCM authenticated encryption also provides per-layer integrity checking, so even partial corruption is detected before any data is returned.