verified flag on the evidence handed back to you.
The baseline is a pass-or-fail contract. Every gate that applies must pass for the evidence to be marked verified. There is no partial credit: one failed gate means the evidence did not pass.
The Seven Gates
Gate 1: Evidence present and parseable. The evidence must be present and parseable as a structured object. Gate 2: Self-declared verification. If the evidence’s own contents declare that it did not verify, the result is marked unverified. Gate 3: Proof metadata present. The proof format, the signing algorithm, and the model public key must all be present. If you specified a signing algorithm, it must match the one the evidence declares. Gate 4: Nonce match. The nonce you supplied must match the nonce observed in the evidence. Gate 5: Report-data binding. Nito recomputes the binding and checks that the stamped report data equals the signing address combined with your nonce, and that the observed signing address matches the address you asked about. Mechanics: the report-data binding. Gate 6: Nested model-attestation binding. The evidence carries a nested model attestation. Nito checks the binding within it: the model ID, the algorithm, the model signing identity, the model public key, and the nonce. The invariant governing this gate is on address-only model binding. Gate 7: Nested payload nonce for accelerator envelopes. For evidence wrapping a hardware accelerator (GPU) proof, the nonce inside the nested payload is checked as well.What the Baseline Does Not Do
The baseline does not:- verify the CPU-side hardware quote against a root of trust;
- verify the accelerator (GPU) device-level cryptographic proof;
- validate certificate chains;
- check certificate revocation lists (CRLs);
- evaluate Trusted Computing Base (TCB) policies.
Send a Fresh Nonce Every Time
Gates 4 and 5 both depend on the nonce, and nothing stores nonces between requests. Send a fresh random one every time and those gates enforce that the evidence was produced for this request. Omit it and an empty-binding report is permitted, which means no replay protection. See the report-data binding.Related Resources
Attestation Pipeline
The flow these checks sit inside.
Report-Data Binding
Gates 4 and 5 in full.
Verify It Yourself
Completing the hardware verification.

