Files
Lux Magnetar 83ce56ff0f magnetar v1.0.0: ONE construction per regime; THBS-SE permissionless threshold
Magnetar v1.0.0 closes the permissionless-threshold story at ONE
construction --- THBS-SE (Threshold Hash-Based Signatures with
Selected-Element Reconstruction) --- and removes every legacy
seed-recombine path from the codebase.

The two production primitives at v1.0:

1. Per-validator standalone (standalone.go, unchanged from v0.5.x) ---
   the public-BFT primary primitive. Each validator holds its own FIPS
   205 keypair, signs independently, consensus collects N signatures
   into a ValidatorAggregateCert.

2. THBS-SE (thbsse.go + thbsse_field.go) --- the permissionless
   threshold companion. t-of-n committee, slot-bound commit-and-reveal,
   PUBLIC COMBINER role (anyone-can-combine, no host in TCB at sign
   time), slashable equivocation and malformed-share evidence.

Both emit byte-identical FIPS 205 signatures that unmodified verifiers
accept (TestMagnetar_Wire_FIPS205Verifiable +
TestThbsSE_Wire_FIPS205Verifiable across all 3 SHAKE modes).

Hard invariant (THBS-SE): a revealed value is allowed only if it is
also present in the final SLH-DSA signature. Forbidden reveals:
SK.seed in any party-local persistent form, SK.prf, future-slot share
material. The slot guard refuses any same-slot re-emission.

v1.0 honest open item: the strict "no transient seed at any moment"
invariant requires a v1.1 strict-atom-assembly path
(BLOCKERS.md::MAGNETAR-STRICT-ATOM-V11) that re-implements FIPS 205
sec 5/6/7/8 internally. v1.0 ships a PUBLIC COMBINER that holds the
seed for one slhdsa.SignDeterministic call and zeroizes; materially
stronger than TEE-attested privileged-aggregator constructions,
materially weaker than the strict refinement.

8 test gates + 2 bonus correctness checks:
- TestThbsSE_Wire_FIPS205Verifiable (3 modes) -- byte identity
- TestThbsSE_RejectSeedReveal
- TestThbsSE_RejectUnselectedFORS
- TestThbsSE_RejectUnselectedWOTS
- TestThbsSE_SlotReuseRejected
- TestThbsSE_OverselectedCommittee
- TestThbsSE_SlotBindingDomainSeparation
- BenchmarkThbsSE_Sign_5of7
- TestThbsSE_PublicCombiner_Determinism (bonus)
- TestKAT_ThbsSe (n=7, t=4, 3 modes, 3 messages)

Removed (legacy seed-recombine path + the proofs/CT scaffolding that
modeled it):

- ref/go/pkg/magnetar/{threshold,aggregate,combine,shamir,dkg}.go
  + tests
- ref/go/pkg/magnetar/{e2e,fuzz,n1_byte_equality}_test.go
- ref/go/pkg/thbs/ (entire subtree including dkg2/ PVSS skeleton)
- vectors/{threshold-sign,dkg}.json
- jasmin/{threshold,lib}/ (legacy seed-recombine model)
- proofs/easycrypt/ (entire tree; v1.1 ports to THBS-SE)
- ct/dudect/ (entire tree; v1.1 lands with strict-atom path)
- scripts/{check-lean-bridge,checks/ec-*,checks/jasmin,checks/extraction}.sh

Added:

- ref/go/pkg/magnetar/thbsse.go (1054 LOC; the THBS-SE construction)
- ref/go/pkg/magnetar/thbsse_field.go (GF(257) internal share math)
- ref/go/pkg/magnetar/thbsse_test.go (8 gates + 2 bonus)
- vectors/thbsse-sign.json (deterministic (n=7,t=4) KAT)
- v1.0 supersede notices on v0.x archival docs

Verification:
- GOWORK=off go build ./... && go vet ./...: clean
- go test -count=1 -short: PASS (all gates)
- go test -count=1 -race -short: PASS
- grep "reveal-and-aggregate|seed.*recombin|THBS over.*seed|aggregator.*reconstruct.*seed" *.go: 0 matches
- find ref/go/pkg -type d -name thbs: empty
2026-06-01 12:03:22 -07:00
..

Magnetar --- Jasmin high-assurance track

This directory holds the Jasmin sources for the Magnetar v1.0 single-party SLH-DSA core. Jasmin (https://github.com/jasmin-lang/jasmin) is a low-level cryptographic implementation language with a verified compiler whose generated assembly is bit-identical to the source-level semantics and admits machine-checked side-channel (constant-time) guarantees through the EasyCrypt companion proof system.

Magnetar v1.0 Jasmin scope

Magnetar v1.0 ships TWO primitives:

Primitive Jasmin coverage
Per-validator standalone (ref/go/pkg/magnetar/standalone.go) Routes through cloudflare/circl/sign/slhdsa v1.6.3 in production. Single-party FIPS 205 functional + constant-time analysis tracks the formosa-crypto libjade-SLH-DSA upstream when it lands (see slh-dsa/).
THBS-SE (ref/go/pkg/magnetar/thbsse.go + thbsse_field.go) Pure-Go reference; the field-arithmetic surface (GF(257) byte-wise Shamir + Lagrange interpolation) is small enough that the analysis lives in EasyCrypt directly. No standalone Jasmin track for v1.0.

The Magnetar v1.0 Jasmin track is therefore single-party SLH-DSA only --- the layer where formosa-crypto upstream provides verified sources. THBS-SE byte-equality to FIPS 205 SignDeterministic falls out of the construction (the public combiner routes through the SAME single-party slhdsa.SignDeterministic call), so the single-party verified track transitively covers the THBS-SE output path.

The THBS-SE share-arithmetic surface (thbsse_field.go) is straight-line GF(257) modular arithmetic with constant-time intent: no secret-dependent branches in thbsseModInvSmall / thbsseModPowSmall / Lagrange basis computation; the share VALUES flow into the multiplications as inputs, but the exponent in Fermat's little theorem is the PUBLIC prime p-2. The EasyCrypt theory at ../proofs/easycrypt/ carries the share-arithmetic claims; no separate Jasmin lift is required for v1.0.

When the strict-atom-assembly path lands (v1.1)

The BLOCKERS.md::MAGNETAR-STRICT-ATOM-V11 work item lifts the THBS-SE public combiner from "transient seed reconstruction" to "strict per-atom FORS/WOTS reconstruction". At that point a small Magnetar-internal re-implementation of FIPS 205 sec 5/6/7/8 enters the trusted computing base: the per-atom WOTS+ chain compute and FORS sign step become the new CT-critical surfaces, and a Magnetar- specific Jasmin track becomes the right tool to gate them.

That track is scoped at v1.1; for v1.0 the libjade-SLH-DSA upstream trace (when it lands) is the canonical single-party CT story.

Directory layout

  • slh-dsa/ --- placeholder for the upstream libjade-SLH-DSA tree (Jasmin sources + EasyCrypt extracted proofs). The README there documents the upstream status and the future routing. fetch.sh is the future on-demand pull script.

The legacy v0.x threshold/ and lib/ subtrees that modeled the seed-recombine path have been removed for v1.0 (they corresponded to the abandoned reveal-and-aggregate variant). THBS-SE has no Jasmin- internal threshold layer --- the share math lives in pure Go (thbsse_field.go) and is covered by the EasyCrypt theory above.

How to check

../scripts/check-high-assurance.sh

The script is skip-friendly: if jasminc or easycrypt is not on the system PATH it prints a clear skip message and exits 0.

Tool installation

Citations

  • Almeida, Barbosa, Barthe, Blot, Gregoire, Laporte, Oliveira, Pacheco, Schwabe, Strub. The last mile: High-assurance and high-speed cryptographic implementations. IEEE S&P 2020.
  • NIST FIPS 205 --- Stateless Hash-Based Digital Signature Standard (2024).
  • Bernstein et al. --- SPHINCS+ submission to NIST PQC.
  • Shamir, A. --- How to share a secret. Communications of the ACM, 1979.
  • Schoenmakers, B. --- A simple publicly verifiable secret sharing scheme and its application to electronic voting. CRYPTO 1999.