Locked & verifiable.
An evaluation claim anchored to a SHA-256 hash at the recorded time. Anyone can re-derive it from the canonical bytes below.
da55fc4ac5cc572ce13ad2a913956414b186ec1685849ff1254058b78cb70cb9record: acceptance-record-seal/0 role: seal of the signed acceptance plan (illustrative example, not a client engagement) plan_id: AP-2026-001 plan_version: v1 documents: 1-acceptance-plan.md: 789a86c6ba5a5b220dac68ba125f4bc0f587339159df381019164ed06165bdb9 1-acceptance-plan.md.client.sig: de4d6e479f8c292465e1fd05f72e43f2b2ef77247861303c73b79cb5364c2f69 1-acceptance-plan.md.supplier.sig: 3677f9e38fa9efc9e9b792b8fde701dc713ef4e0c94c559af5fd6288cd431678 criteria_records: C1: https://registry.falsify.dev/5ce3c9c3484d8db1ffbc67dc4f3958c9a88009a0ae92ce51e045ea6b70258bc3 C2: https://registry.falsify.dev/464df2bee6b479b742306cca356ce8e4904be22cad09beb5cfee29025c1b1d31 signers_file_sha256: f2d4a981be766bca94fd1f7e6e86067ca6d5db9155f0b2f270bdfb1f59b92c70raw bytes →
[](https://registry.falsify.dev/da55fc4ac5cc572ce13ad2a913956414b186ec1685849ff1254058b78cb70cb9)- uses: studio-11-co/prml-verify-action@v2
with:
mode: verdict
expected-hash: da55fc4ac5cc572ce13ad2a913956414b186ec1685849ff1254058b78cb70cb9github.com/studio-11-co/prml-verify-action →Verify this hash yourself
Paste your manifest YAML. The canonical hash must match da55fc4ac5cc…. This runs the registry's own canonicalization module (canonical.js) in your browser; for verification that does not trust this registry at all, use any of the four reference implementations offline.
Verify the independent timestamp (RFC 3161, offline)
The token countersigns this manifest hash with the timestamp authority's key, so the time claim no longer rests on this registry. Verify with OpenSSL 3 (LibreSSL, the macOS default, cannot check the ESS extension):
curl -sO https://registry.falsify.dev/da55fc4ac5cc572ce13ad2a913956414b186ec1685849ff1254058b78cb70cb9.tsr
curl -s https://timestamp.sigstore.dev/api/v1/timestamp/certchain -o chain.pem
awk 'split_after==1{n++;split_after=0} /END CERTIFICATE/{split_after=1} {print > ("tsa-" n ".pem")}' n=0 chain.pem
openssl ts -verify -digest da55fc4ac5cc572ce13ad2a913956414b186ec1685849ff1254058b78cb70cb9 \
-in da55fc4ac5cc572ce13ad2a913956414b186ec1685849ff1254058b78cb70cb9.tsr -CAfile tsa-1.pem -untrusted tsa-0.pem
Expected output: Verification: OK.
What this receipt proves — and what it does not
- Proves: these manifest bytes hashed to this SHA-256, and the registry attests (Ed25519 signature over hash + timestamp, key at /pubkey) that it saw the hash at the recorded time.
- Timestamp: where an RFC 3161 token is present (the "Independent timestamp" row above), the time claim is countersigned by a public timestamp authority and verifiable offline; backdating it would require compromising that authority, not just this registry. Records without a token rest on the registry's clock alone until anchored. Where a "Transparency log" row is present, the hash is additionally mirrored to the public Sigstore Rekor log with a verifiable inclusion proof.
- Does not prove: ordering, or the claimed result. A PRML receipt establishes that these criteria existed no later than the recorded time; it does not establish that the evaluation ran afterwards — that is what a
prml-linkage/0record is for — and it never establishes that the result is good. - The signature covers hash + timestamp only, not the submitted handle. There is no key-rotation story yet; the current key id is served at /pubkey.
- Limitations: the registry itself is a signed key-value store, not an append-only log — per-record non-equivocation comes from the Rekor entry, and records committed before full-manifest storage (2026-07-11) carry their RFC 3161 token only. No long-term storage guarantee: mirror your hashes in your own infrastructure.
PRML v0.2 is a frozen RFC (comment window closed 2026-05-22) — spec.falsify.dev/v0.2-rfc. Editor: spec.falsify.dev/editor.