mirror of
https://github.com/saymrwulf/fips205-slhdsa-verified.git
synced 2026-09-04 20:03:44 +00:00
13 lines
487 B
Bash
13 lines
487 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# The one-button claim for this repository (rigor invariant R3).
|
||
|
|
# Green output == the full claim. This script is the ONLY source of the
|
||
|
|
# word "proven" for this repo.
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
echo "fips205-slhdsa-verified — check"
|
||
|
|
echo "================================"
|
||
|
|
echo "SKELETON: 0 certificates. NOTHING PROVEN YET."
|
||
|
|
echo "Campaign phase 1 (Aeneas-compat patch + clean extraction) has not"
|
||
|
|
echo "landed. See README.md 'Gate-0 record' and TRUSTED-BASE.md."
|
||
|
|
exit 1
|