Skip to main content
Documentation

Vallum Trust & Evidence Center

Technical documentation for Vallum trust infrastructure. Vallum provides scoped authorization, evidence verification, cryptographic provenance, certification, public verification, and defensible evidence delivery.

Vallum integrates with existing systems. It does not require Wayne OS and does not replace identity management, endpoint protection, network security, cloud security, governance, or legal review.

Getting Started

Core concepts, architecture overview, and integration guidance.

AI Trust Failure-Mode Library

Reference failure modes for AI systems and how Vallum capabilities address them.

Titan Stack

Integration guides for Titan Handshake, Titan Verify, Titan Sign, and Titan Forge.

Verified Ops

Certificate lifecycle, evidence packages, and public verification.

Architecture Overview

Vallum is independent proof-grade trust infrastructure for scoped authorization, evidence verification, cryptographic provenance, certification, public verification, and defensible evidence delivery. It complements existing identity, endpoint, network, cloud, governance, and legal controls — it does not replace them.

The architecture is built on the Titan Stack (four components) and Verified Ops (the certification and evidence delivery layer). Titan Handshake establishes scoped authority. Titan Verify validates evidence packages and manifests. Titan Sign provides cryptographic provenance. Titan Forge provides SDK, CLI, fixtures, and adoption tooling. Verified Ops issues certificates and delivers evidence packages.

┌─────────────────────────────────────────────────────────────┐
│                    Your Application Layer                     │
│    (Your existing systems, AI agents, business software)     │
└──────────────────────────┬──────────────────────────────────┘
                           │
┌──────────────────────────▼──────────────────────────────────┐
│                   VALLUM TRUST INFRASTRUCTURE                 │
│                                                              │
│  ┌─────────────┐  ┌──────────────┐  ┌────────────────────┐  │
│  │   Titan     │  │    Titan     │  │      Titan         │  │
│  │  Handshake  │  │    Verify    │  │       Sign         │  │
│  │  (Scoped    │  │  (Evidence   │  │  (Cryptographic    │  │
│  │  Authority) │  │   Packages)  │  │    Provenance)     │  │
│  └─────────────┘  └──────────────┘  └────────────────────┘  │
│                                                              │
│  ┌──────────────────────┐  ┌─────────────────────────────┐  │
│  │     Titan Forge      │  │       Verified Ops          │  │
│  │  (SDK · CLI · Tools) │  │  (Certificates · Evidence)  │  │
│  └──────────────────────┘  └─────────────────────────────┘  │
│                                                              │
│  ┌─────────────────────────────────────────────────────────┐ │
│  │         Tenant-Scoped Evidence Boundaries                │ │
│  │   (Fail-Closed · Receipted · Independently Verifiable)  │ │
│  └─────────────────────────────────────────────────────────┘ │
└──────────────────────────────────────────────────────────────┘

  Vallum complements: identity · endpoint · network · cloud ·
                      governance · legal controls

Core Concepts

Scoped Authorization Receipt

Every protected operation begins with a Titan Handshake that produces an immutable receipt. The receipt records what was requested, which tenant initiated the request, what policies were evaluated, and what decision was made. Authorization is scoped to a specific tenant, operation, and context — there is no ambient authority.

Fail-Closed Trust Decision

When a trust decision cannot be made (missing context, invalid credentials, policy conflict, or system error), the operation is denied by default. Vallum does not fail open. Every denial is receipted with the reason for rejection, creating an auditable record of blocked operations.

Evidence Package

A self-contained, independently verifiable bundle of evidence assembled by Titan Verify. An evidence package contains the relevant receipts, manifest, metadata, and cryptographic signatures needed to demonstrate what happened, when, and under what authority — without requiring access to Vallum systems.

Cryptographic Provenance

Titan Sign provides cryptographic sealing of evidence and audit outputs. Once sealed, a record cannot be modified without detection. Provenance establishes an unbroken chain from creation through delivery, enabling third parties to independently verify integrity.

Tenant-Scoped Evidence Boundary

Protected operations are tenant-scoped. Private evidence is tenant-isolated within Verified Ops. Wrong-tenant authorization fails closed. Public verification exposes only a minimal safe status response — never private evidence or internal operational details.

Certificate Lifecycle

Verified Ops issues certificates (VERIFIED or CERTIFIED) that follow a defined lifecycle: issuance, active period, renewal, and expiration or revocation. Each lifecycle transition is receipted and produces evidence that can be independently verified.

Public Verification Boundary

A public verification endpoint exposes only the minimum information needed to confirm certificate status. It does not expose private evidence, internal tenant data, or operational details. The boundary is designed so that verification is possible without granting access to sensitive records.

Titan Stack

Titan Handshake

Establishes scoped authority for protected operations. Every handshake produces an immutable receipt recording the tenant, operation, context, policies evaluated, and authorization decision. Fail-closed by default.

Titan Verify

Validates evidence packages and manifests. Assembles receipts, metadata, and supporting records into self-contained evidence bundles that can be independently verified without access to Vallum systems.

Titan Sign

Provides cryptographic provenance for evidence and audit outputs. Once sealed, records cannot be modified without detection. Chain of custody is maintained from creation through delivery.

Titan Forge

Provides SDK, CLI, fixtures, and adoption tooling for integrating with the Titan Stack. Forge enables developers to generate test fixtures, validate integration correctness, and adopt Vallum incrementally within existing systems.

Verified Ops

Verified Ops issues certificates and delivers evidence packages. It manages the certificate lifecycle (issuance, active period, renewal, expiration, revocation) and provides public verification endpoints that expose only minimal safe status responses.

Evidence Packages

Self-contained bundles containing receipts, manifest, metadata, and cryptographic signatures. Designed to be shared with auditors, regulators, or clients without requiring access to internal systems.

Public Verification

Public endpoints expose only certificate status (valid, expired, revoked) and minimal metadata. Private evidence, tenant data, and operational details are never exposed through the public boundary.

Integration Guide

Vallum integrates with your existing infrastructure. The following describes the general integration pattern. For specific SDK usage and CLI commands, refer to the Titan Forge documentation.

1

Establish scoped authority via Titan Handshake

Before a protected operation executes, request authorization through Titan Handshake. The handshake evaluates the tenant, operation type, and applicable policies, then returns an authorization receipt.

// Illustrative architecture example — not a currently released API.
// Refer to Titan Forge documentation for current SDK usage.

// Step 1: Request scoped authorization
const receipt = await titanHandshake.authorize({
  tenant: tenantId,
  operation: 'deployment.approve',
  context: { environment: 'production', artifact: releaseId },
});

// Step 2: Proceed only if authorized (fail-closed)
if (!receipt.authorized) {
  // Denial is receipted with reason
  log.warn('Operation denied', receipt.denialReason);
  return;
}

// Step 3: Execute the protected operation
await deployArtifact(releaseId);

Illustrative architecture example — not a currently released API. Refer to Titan Forge documentation for current SDK usage.

2

Assemble evidence via Titan Verify

After operations complete, Titan Verify assembles the relevant receipts into a self-contained evidence package that can be independently verified.

// Illustrative architecture example — not a currently released API.

// Assemble evidence for the certificate
const evidencePackage = await titanVerify.assemblePackage({
  certificateId: 'VOC-2026-001',
  includeReceipts: true,
  includeManifest: true,
});

// The package is self-contained and independently verifiable
// Share with auditors without granting system access
console.log(evidencePackage.publicVerifyUrl);

Illustrative architecture example — not a currently released API. Refer to Titan Forge documentation for current SDK usage.

3

Seal with Titan Sign for cryptographic provenance

Titan Sign cryptographically seals evidence packages and audit outputs. Once sealed, records cannot be modified without detection.

// Illustrative architecture example — not a currently released API.

// Seal the evidence package
const sealed = await titanSign.seal({
  packageId: evidencePackage.id,
  provenance: 'production-deployment-audit',
});

// Sealed records maintain chain of custody
// Third parties can verify integrity independently
console.log(sealed.integrityHash);
console.log(sealed.verificationUrl);

Illustrative architecture example — not a currently released API. Refer to Titan Forge documentation for current SDK usage.

Ready to integrate?

Request an architecture review with our engineering team. We will map Vallum to your specific infrastructure and provide integration guidance.

Request Architecture Review