What a TEE Is
A Trusted Execution Environment (TEE) is a region of a computer, enforced by the processor itself, that runs code in isolation from everything else on the machine. The machine’s owner, the operating system, other programs on the same hardware, and someone with physical access cannot read what is inside or change it. The isolation is policed by the silicon, not by software the host could switch off.What Attestation Adds
Isolation alone would still be a promise: you would have to believe a genuine sealed environment ran your work rather than an ordinary machine. An attestation removes that leap. It is a signed statement, generated by the hardware, describing what is running inside the sealed environment.- It is signed by the hardware, using a key rooted in the silicon, so it cannot be forged in software.
- It commits to what is running, as a measurement: a cryptographic fingerprint of the exact code loaded into the environment.
Binding It to Your Request
A receipt only helps if it describes your computation and not an old one being replayed. You include a fresh, unpredictable value (a nonce) with the request, and the TEE binds it into the attestation. Confirming your value is present is what tells you the receipt was produced for this request. Every verification recipe in this section starts by generating a new one.What This Means on Nito
Confidential calls run inside these sealed environments, and you can fetch the attestation and check it yourself. Producing an attestation and fully verifying its hardware evidence are two different jobs. Nito runs a baseline check and returns the raw evidence to you. The hardware quotes and certificate chains are yours to validate if your threat model demands it. That split is why these docs say a result is attested and verifiable: it makes you the final verifier rather than someone trusting Nito.Related Resources
Attestation Pipeline
The end-to-end flow of a Confidential attestation.
The Seven-Gate Baseline
The exact checks Nito runs, and the scope limit.
Verify It Yourself
The procedure for checking an attestation.

