> ## Documentation Index
> Fetch the complete documentation index at: https://qwed-ai-mintlify-8e0ee660.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Cryptographic attestations

> Generate and verify cryptographically signed JWT proofs of verification using ES256 signatures. Store attestations on-chain or verify independently.

## What are attestations?

An **attestation** is a cryptographically signed proof that a verification occurred. It:

* Uses **ES256 (ECDSA P-256)** signatures
* Is formatted as a **JWT**
* Can be verified independently
* Can be stored on-chain

## Requesting attestations

```python theme={null}
result = client.verify(
    "2+2=4",
    include_attestation=True
)

print(result.attestation)
# eyJhbGciOiJFUzI1NiIsInR5cCI6InF3ZWQtYXR0ZXN...
```

## Fail-closed contract

<Warning>
  **Since PR #194 (Issue #188):** `create_verification_attestation()` **never returns `None`**. It always returns an `AttestationResult` with `status` set to `ISSUED`, `BLOCKED`, or `UNVERIFIABLE`. You MUST check `result.is_issued` before you treat the attestation as valid. A missing or failed attestation must hard-block the verification path. Never downgrade it to `VERIFIED`.
</Warning>

### `AttestationResult`

<ParamField path="status" type="AttestationStatus" required>
  Lifecycle state of the attestation. One of `ISSUED`, `BLOCKED`, or `UNVERIFIABLE`.
</ParamField>

<ParamField path="token" type="string | None">
  Signed JWT string. Present only when `status == ISSUED`; `None` otherwise.
</ParamField>

<ParamField path="error_code" type="string | None">
  Machine-readable failure code: `"SIGNING_FAILURE"` when signing failed, `"CRYPTO_UNAVAILABLE"` when the `cryptography` / `PyJWT` package is not installed, `"VERIFIED_WITHOUT_PROOF"` when the caller asked to sign a `VERIFIED` result without a `proof_data` artifact, `None` on success.
</ParamField>

<ParamField path="error" type="string | None">
  Human-readable failure detail. `None` on success.
</ParamField>

<ParamField path="is_issued" type="bool">
  Property. `True` only when `status is AttestationStatus.ISSUED`. You must check this flag before you use `token`.
</ParamField>

### `AttestationStatus` values

| Status                          | Meaning                                                                                          | `token`    | `error_code`             |
| ------------------------------- | ------------------------------------------------------------------------------------------------ | ---------- | ------------------------ |
| `ISSUED`                        | QWED signed the attestation.                                                                     | JWT string | `None`                   |
| `BLOCKED`                       | Crypto is available but signing failed (key error, JWT error). Hard block.                       | `None`     | `SIGNING_FAILURE`        |
| `BLOCKED`                       | Caller passed `verified=True` without a `proof_data` artifact. The crypto layer refuses to sign. | `None`     | `VERIFIED_WITHOUT_PROOF` |
| `UNVERIFIABLE`                  | `cryptography` / `PyJWT` not installed. QWED did not attempt signing.                            | `None`     | `CRYPTO_UNAVAILABLE`     |
| `VALID` / `EXPIRED` / `REVOKED` | Lifecycle states for previously issued attestations during verification.                         | —          | —                        |

### Caller pattern

```python theme={null}
from src.qwed_new.core.attestation import create_verification_attestation

result = create_verification_attestation(
    status="VERIFIED",
    verified=True,
    engine="math",
    query="2+2=4",
    proof_data=json.dumps(evidence, sort_keys=True),
)

if not result.is_issued:
    # Fail-closed: do not proceed as VERIFIED without a proof artifact
    raise RuntimeError(f"Attestation unavailable [{result.error_code}]: {result.error}")

use(result.token)
```

### Issuance-side proof enforcement

`create_verification_attestation()` will not sign a `VERIFIED` verdict that has no proof artifact. If you pass `verified=True` (or `status="VERIFIED"`) with `proof_data` empty or omitted, the crypto layer short-circuits and returns:

```python theme={null}
AttestationResult(
    status=AttestationStatus.BLOCKED,
    token=None,
    error_code="VERIFIED_WITHOUT_PROOF",
    error="VERIFIED status requires proof_data — cannot sign attestation without proof artifact",
)
```

This closes the "trusted VERIFIED without evidence" issuance path: a caller cannot obtain a signed attestation for a claim it has no proof of. `UNVERIFIABLE` and `BLOCKED` verdicts are unaffected — only `VERIFIED` requires a `proof_data` artifact. Pass the same JSON string (typically `json.dumps(evidence, sort_keys=True)`) that your engine used to derive the diagnostic's `proof_ref`, so the token's `qwed.proof_hash` claim matches the result on the consuming side.

### Key lifecycle auditability

Every `IssuerKeyPair` records `generated_at` (epoch seconds) and `key_continuity_policy`. QWED emits a structured log entry (`attestation.key_generated`) on every new key generation, so you can audit continuity events.

<ParamField path="key_continuity_policy" type="string" default="ephemeral">
  Policy for the issuer key pair. Must be one of `"ephemeral"` (in-memory, non-persistent — default) or `"persistent"` (durably stored, e.g. external KMS). Any other value raises `ValueError`.
</ParamField>

`AttestationService.get_issuer_info()` now includes `key_generated_at` and `key_continuity_policy` alongside the existing issuer registry fields.

## Attestation structure

### Header

```json theme={null}
{
  "alg": "ES256",
  "typ": "qwed-attestation+jwt",
  "kid": "did:qwed:node:production#signing-key-2024"
}
```

### Payload

```json theme={null}
{
  "iss": "did:qwed:node:production",
  "sub": "sha256:abc123...",
  "iat": 1703073600,
  "exp": 1734609600,
  "jti": "att_xyz789",
  "qwed": {
    "version": "1.0",
    "result": {
      "status": "VERIFIED",
      "verified": true,
      "engine": "math",
      "confidence": 1.0
    },
    "query_hash": "sha256:def456...",
    "proof_hash": "sha256:ghi789..."
  }
}
```

## Verifying attestations

### Using the API

```python theme={null}
valid, claims, error = client.verify_attestation(jwt)
if valid:
    print(f"Verified by: {claims['iss']}")
```

### Using the SDK

```python theme={null}
from qwed_sdk import verify_attestation

is_valid = verify_attestation(
    jwt="eyJhbGci...",
    trusted_issuers=["did:qwed:node:production"]
)
```

## Enforce the trust boundary

Release gates and any code path that admits a `VERIFIED` result MUST route through `enforce_trust_decision()` before acting on it. It is the single consumption-side entry point that binds a verification result to its attestation token and fails closed on any mismatch — you should not consume `DiagnosticResult.status == VERIFIED` directly.

```python theme={null}
from qwed_new.core import enforce_trust_decision

decision = enforce_trust_decision(
    result,                              # DiagnosticResult from the engine
    attestation_token=token,             # JWT from create_verification_attestation
    require_attestation=True,            # mandatory policy
    trusted_issuers=["did:qwed:node:production"],
    query="2+2=4",                       # original query, for query_hash binding
)

if decision.status.name == "VERIFIED":
    proceed()
else:
    # BLOCKED / UNVERIFIABLE — do not admit the result
    reject(decision)
```

### Parameters

<ParamField path="result" type="DiagnosticResult" required>
  The verification result returned by the engine. `enforce_trust_decision` will pass through any already-fail-closed status (`BLOCKED`, `UNVERIFIABLE`, `CORRECTION_NEEDED`) unchanged, and only apply attestation checks to `VERIFIED`.
</ParamField>

<ParamField path="attestation_token" type="string | None">
  The JWT emitted by `create_verification_attestation()`. May be `None` — but if `require_attestation=True` and the result is `VERIFIED`, a missing token blocks the decision.
</ParamField>

<ParamField path="require_attestation" type="bool" default="True">
  When `True` (default, mandatory policy), a `VERIFIED` result without a valid token is downgraded to `BLOCKED`. When `False` (advisory policy), attestation is best-effort — a missing token still passes, but a present-and-invalid token still blocks.
</ParamField>

<ParamField path="trusted_issuers" type="list[str] | None">
  Optional list of trusted issuer DIDs. When set, only tokens signed by an issuer in this list are accepted. Defaults to the `AttestationService`'s trust anchors.
</ParamField>

<ParamField path="query" type="string | None">
  Optional original query string. When provided, the token's `qwed.query_hash` claim must equal `sha256(query)`, otherwise the decision is blocked. Without it, query binding is not checked.
</ParamField>

### Claims binding

When a token is present, `enforce_trust_decision` verifies three bindings against the result before admitting it:

| Claim                | Bound to              | Blocked when                                                      |
| -------------------- | --------------------- | ----------------------------------------------------------------- |
| `qwed.result.status` | `result.status.value` | Token status does not match the engine's status.                  |
| `qwed.query_hash`    | `sha256(query)`       | `query` is provided and does not match the token's query hash.    |
| `qwed.proof_hash`    | `result.proof_ref`    | Token proof hash does not match the diagnostic's proof reference. |

Every block decision is logged at `WARNING` with a structured `trust_gate.blocked` event (`constraint_id`, `reason`, `policy`) so auditors can replay the enforcement trail.

### Fail-closed matrix

| Result status                                    | Attestation token                                  | Policy                      | Decision                                                                                               |
| ------------------------------------------------ | -------------------------------------------------- | --------------------------- | ------------------------------------------------------------------------------------------------------ |
| `VERIFIED`                                       | Missing `proof_data` on issuance                   | —                           | Issuance returns `BLOCKED` with `VERIFIED_WITHOUT_PROOF` — no token exists.                            |
| `VERIFIED`                                       | None                                               | `require_attestation=True`  | **BLOCKED** (`trust_gate.mandatory_attestation_missing`).                                              |
| `VERIFIED`                                       | None                                               | `require_attestation=False` | Passes through as `VERIFIED` (advisory mode).                                                          |
| `VERIFIED`                                       | Invalid (bad signature, expired, untrusted issuer) | Either                      | **BLOCKED** (`trust_gate.invalid_attestation_token`).                                                  |
| `VERIFIED`                                       | Valid, but claims disagree with result             | Either                      | **BLOCKED** (`trust_gate.claims_status_mismatch` / `claims_query_mismatch` / `claims_proof_mismatch`). |
| `VERIFIED`                                       | Valid and claims match                             | Either                      | Passes through as `VERIFIED`.                                                                          |
| `UNVERIFIABLE` / `BLOCKED` / `CORRECTION_NEEDED` | Any                                                | Either                      | Pass through unchanged — attestation checks do not apply.                                              |

<Tip>
  Start with `require_attestation=False` during the rollout window while engines are still being migrated to emit `proof_data`, then flip it to `True` once every code path that emits `VERIFIED` is signing with a proof artifact. That gives you the audit trail without breaking existing gates on day one.
</Tip>

## Trust anchors

QWED maintains a registry of trusted attestation issuers:

| Issuer DID                 | Name            | Status   |
| -------------------------- | --------------- | -------- |
| `did:qwed:node:production` | QWED Production | ✅ Active |
| `did:qwed:node:staging`    | QWED Staging    | ✅ Active |

## Attestation chains

Link multiple attestations together:

```python theme={null}
attestation1 = client.verify("step1", include_attestation=True)
attestation2 = client.verify(
    "step2",
    include_attestation=True,
    chain_id="chain_abc",
    chain_index=1,
    previous_attestation=attestation1.jti
)
```

## Use cases

1. **Audit Trails** - Prove AI outputs were verified
2. **Compliance** - Regulatory verification records
3. **Blockchain** - Anchor proofs on-chain
4. **Badges** - Show verification status in UIs

## Badge integration

Embed attestation badges:

```markdown theme={null}
![Verified](https://api.qwedai.com/badge/attestation/att_xyz789)
```
