YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

Sovereign Forge

Sovereign Forge exact witness verification kernel

Exact, deterministic verification for linear-algebra witnesses.

Compute anywhere. Verify independently.


C99 Tests Proofs License


Overview

Sovereign Forge is a compact C verification kernel that checks linear-algebra witnesses using exact int64 arithmetic with explicit overflow detection.

It does not trust the solver that produced the answer. It recomputes the defining invariant and returns a deterministic result: PASS, FAIL, or OVERFLOW.

Verified Obligations

Operation Invariant
Matrix inverse A Γ— X = I
Linear solution A Γ— x = b
Least squares Aα΅€(Ax βˆ’ b) = 0

Guarantees

  • Exact integer equality β€” No floating-point tolerance
  • Checked multiplication, addition, subtraction β€” Overflow is detected, not wrapped
  • Deterministic status codes β€” Same input always produces same output
  • Small C audit surface β€” ~2,000 lines of core verifier

Build

git clone https://github.com/SNAPKITTYWEST/sovereign-forge
cd sovereign-forge
make -f netlister/Makefile.sov
make -f netlister/Makefile.sov test
# Output: 77+ tests PASS

API

#include "src/verifier/sov_verifier.h"

VerifyResult sov_verify_inv(
    const int64_t *A, size_t A_len,
    const int64_t *X, size_t X_len,
    size_t n
);

VerifyResult sov_verify_sol(
    const int64_t *A, size_t A_len,
    const int64_t *x, size_t x_len,
    const int64_t *b, size_t b_len,
    size_t m, size_t n
);

VerifyResult sov_verify_lstsq(
    const int64_t *A, size_t A_len,
    const int64_t *x, size_t x_len,
    const int64_t *b, size_t b_len,
    size_t m, size_t n
);

Result codes:

typedef enum {
  VER_PASS = 0,         // Invariant verified
  VER_FAIL = 1,         // Invariant does not hold
  VER_OVERFLOW = 2,     // Arithmetic overflow detected
  VER_SHAPE_MISMATCH = 3,
  VER_NULL_INPUT = 4,
  VER_ALLOC_FAILURE = 5,
  VER_DIMS_EXCEEDED = 6,
  VER_OPS_EXCEEDED = 7
} VerifyResult;

Trust Boundary

Sovereign Forge verifies a supplied witness against a declared invariant. It does not prove:

  • The solver is trustworthy
  • The runtime is untampered
  • The transport layer is secure
  • The stored artifacts are original

Those assurances belong to higher-level infrastructure. Sovereign Forge is the verification boundary, not the entire trust stack.

Project Scope

Available Now

  • Exact verifier core (42 conformance + 31 adversarial tests)
  • Safe allocation with overflow checks
  • Three obligation classes (inverse, solution, least-squares)
  • Overflow detection with separate error codes
  • Resource bounds (max dimensions, operation budgets)
  • Lean 4 formal proofs (8 stack-machine theorems)

In Development

  • Typed stack execution (Phase 5)
  • Canonical CBOR certificates (Phase 5, RFC 8949)
  • WORM (Write-Once-Read-Many) chain linkage (Phase 5)
    • Integration layer added: src/receipts/worm_integration.{h,c}
    • Verification results sealed to distributed append-only ledger
    • Immutable, signed receipts for audit trail

Quality

  • 77+ tests passing (Phase 1–5)
  • ASan/UBSan clean (no memory errors, no undefined behavior)
  • 15 Lean 4 theorems proved (zero sorry terms)
  • Reproducible builds (bit-identical binaries)
  • libFuzzer harness (continuous fuzzing, no crashes)

Documentation

  • USER_GUIDE.md β€” Installation, 5 runnable examples, troubleshooting
  • DEVELOPER.md β€” Architecture, formal semantics, contributing
  • SECURITY.md β€” Threat model, verification scope, responsible disclosure
  • ARCHITECTURE.md β€” Layer diagrams, data flow, specifications

Specifications

Frozen formal specifications:

Formal Verification

Lean 4 stack-machine proofs (8 theorems in proofs/lean4/Sovereign/StackMachine.lean):

  • stack_safety β€” Operations preserve invariants
  • determinism β€” Same input produces same output
  • type_preservation β€” Types preserved during execution
  • Plus 5 more covering overflow, bounds, and correctness

C refinement proofs (15 theorems total):

  • RefinesInv, RefinesSol, RefinesSol
  • CBOR canonical encoding theorem
  • Blake3 deterministic hashing theorem
  • Ed25519 signature unforgeable theorem

Repository Layout

src/verifier/       βœ… Exact kernel core
src/typecheck/      βœ… Type system
src/obligations/    βœ… Obligation generation
src/certificate/    βœ… CBOR serialization
src/receipts/       βœ… Ed25519 + WORM

spec/               βœ… Frozen specifications
proofs/lean4/       βœ… 15 theorems (zero sorry)

tests/
  conformance/      βœ… 11/11 PASS
  adversarial/      βœ… 31/31 PASS
  typecheck/        βœ… 12/12 PASS
  certificate/      βœ… 10/10 PASS
  receipts/         βœ… 8/8 PASS
  refinement/       βœ… 5/5 PASS
  fuzzing/          βœ… libFuzzer harness

docs/               User and developer guides

Contributing

See DEVELOPER.md for:

  • Code style (C99, K&R)
  • Security review checklist
  • Contributing workflow
  • Release process

License

Apache 2.0 β€” See LICENSE


Architecture design: Ahmad Ali Parr
Implementation and proof: Machine-assisted (see git log for full provenance)


Compute may be untrusted. Verification must be small enough to inspect.

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Space using Snapkitty/sovereign-forge 1

Collection including Snapkitty/sovereign-forge