# 3.2 Universal Trust Layer

Most systems have **multiple trust mechanisms**:

* Passwords for users
* OTPs for admins
* API keys for services
* Secrets for automation

Each mechanism:

* Has different failure modes
* Requires separate security logic
* Expands the attack surface

#### PTERI removes this duplication

The same cryptographic primitive is reused everywhere:

**Sign → Verify**

***

#### Where this applies

The exact same flow is used for:

* Login
* Step-up authentication
* Payments
* API authorization
* AI agent execution

There is no conceptual difference between:

* A human logging in
* A service calling an API
* An AI agent executing a task

All are simply **authorities proving intent**.

***

#### Why this matters

This model:

* Reduces system complexity
* Eliminates entire classes of bugs
* Makes security review tractable
* Scales naturally to automation and AI

> One primitive. One verifier. Infinite use cases.

<figure><img src="/files/REbSPMSBwR4SSnUJr7FL" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kakrlabs.com/3.-pteri-model-and-universal-trust-layer/3.2-universal-trust-layer.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
