mirror of
https://github.com/luxfi/corona.git
synced 2026-07-27 02:50:34 +00:00
Add corona/gpu package — the single, decomplecting point where corona opts into the lattice library's per-SubRing GPU NTT dispatcher. Architecture (decomplected). The lattice library already owns ALL build-tag plumbing for GPU NTT: ring.SetGPUDispatchers (subring_ops.go) is the canonical hook; the lattice/gpu package installs it under `cgo && gpu` build tags and provides a real CPU fallback under !cgo or !gpu. Output is byte-equal to ring.SubRing.NTT by lattice's own contract. corona/gpu adds the corona-side bridge: UseAccelerator() flips a global flag, NewParams() across corona consults the flag via MaybeRegister and binds each created Ring's SubRings into the lattice GPU registry. Single source of truth for the opt-in; no build tags inside corona. Threshold gating (honest). Single-poly Metal NTT at corona's production N=256 is roughly 4-6x SLOWER than pure-Go ring.SubRing.NTT (measured: BenchmarkPulsarSign_ 5of7 force-GPU 7.1s vs CPU 1.1s; 14of21 force-GPU 23.5s vs CPU 5.9s). The GPU win exists only in BATCHED dispatch (many polynomials per kernel launch), which requires future engine-layer plumbing of lattice/gpu.MontgomeryNTTContext.Forward(data, batch>=4) bypassing the per-poly r.NTT() pinch point. Therefore UseAccelerator() picks defaultThreshold=1024 — above corona's N=256 — so the SubRing dispatch is armed but does not fire on single-poly NTT. The registry remains primed for any future batch caller (e.g. FHE bootstraps in thresholdvm sharing this library). UseAcceleratorForce() (threshold=1) is provided strictly for the correctness gate: every NTT call routes through the GPU so the byte-equality test in threshold/threshold_gpu_test.go exercises the GPU path end-to-end. Production callers use UseAccelerator() instead. Byte-equality. TestThresholdSign_CPU_vs_GPU_ByteIdentical runs the full 2-round Pulsar signing protocol with GPU dispatch off and forced-on (same deterministic dealer randomness, same message) and asserts byte-equal sig.C / sig.Z / sig.Delta. Passes under CGO_ENABLED=0, CGO_ENABLED=1, and CGO_ENABLED=1 -tags gpu. Existing TestDKG2_GPU_ByteEqual coverage extends across n=3,5,7,11,21 (production shape). Wiring. NewParams() in sign-bound packages — threshold, dkg2, dkg, reshare — calls corona/gpu.MaybeRegister(r) for the main Q ring. RXi and RNu are power-of-two moduli; the NTT path is not taken on them. Tests. Full corona test suite passes under both build modes: - CGO_ENABLED=0 go test ./... => all green - CGO_ENABLED=1 -tags gpu test => all green
303 lines
7.9 KiB
Go
303 lines
7.9 KiB
Go
// Copyright (C) 2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
// Package corona provides post-quantum threshold signatures using Ring-LWE.
|
|
//
|
|
// Signing is a 2-round protocol:
|
|
// - Round 1: Each party broadcasts D matrix + MACs
|
|
// - Round 2: Each party broadcasts z share
|
|
// - Finalize: Any party aggregates into final signature
|
|
//
|
|
// Fresh keygen runs each epoch when validator set changes.
|
|
package threshold
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"errors"
|
|
"io"
|
|
"math/big"
|
|
|
|
"github.com/luxfi/corona/gpu"
|
|
"github.com/luxfi/corona/primitives"
|
|
"github.com/luxfi/corona/sign"
|
|
|
|
"github.com/luxfi/lattice/v7/ring"
|
|
"github.com/luxfi/lattice/v7/utils/sampling"
|
|
"github.com/luxfi/lattice/v7/utils/structs"
|
|
)
|
|
|
|
var (
|
|
ErrInvalidThreshold = errors.New("threshold must be > 0 and < total parties")
|
|
ErrInvalidPartyCount = errors.New("need at least 2 parties")
|
|
ErrInvalidPartyIndex = errors.New("party index out of range")
|
|
ErrMACVerifyFailed = errors.New("MAC verification failed")
|
|
ErrFullRankFailed = errors.New("full rank check failed")
|
|
ErrInsufficientData = errors.New("insufficient round data")
|
|
)
|
|
|
|
// Params holds ring parameters for the protocol.
|
|
type Params struct {
|
|
R *ring.Ring // Main ring with prime Q
|
|
RXi *ring.Ring // Rounding ring with QXi
|
|
RNu *ring.Ring // Rounding ring with QNu
|
|
}
|
|
|
|
// NewParams creates ring parameters.
|
|
//
|
|
// If corona/gpu has been opted into via UseAccelerator(), each created
|
|
// ring is registered with the lattice/gpu per-SubRing dispatcher so
|
|
// subsequent r.NTT / r.INTT calls inside the 2-round signing protocol
|
|
// transparently route through the GPU. Output bytes are unchanged.
|
|
func NewParams() (*Params, error) {
|
|
r, err := ring.NewRing(1<<sign.LogN, []uint64{sign.Q})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
// QXi and QNu are powers of 2 for rounding, ignore ring errors
|
|
rXi, _ := ring.NewRing(1<<sign.LogN, []uint64{sign.QXi})
|
|
rNu, _ := ring.NewRing(1<<sign.LogN, []uint64{sign.QNu})
|
|
// Best-effort GPU registration for the main Q ring. RXi / RNu are
|
|
// power-of-two moduli so the NTT path is not taken on them.
|
|
gpu.MaybeRegister(r)
|
|
return &Params{R: r, RXi: rXi, RNu: rNu}, nil
|
|
}
|
|
|
|
// GroupKey holds the public parameters for the threshold group.
|
|
type GroupKey struct {
|
|
A structs.Matrix[ring.Poly] // Public matrix
|
|
BTilde structs.Vector[ring.Poly] // Rounded public key
|
|
Params *Params
|
|
}
|
|
|
|
// Bytes returns a serialized representation of the group key.
|
|
// Note: This is a simplified serialization for compatibility.
|
|
func (gk *GroupKey) Bytes() []byte {
|
|
if gk == nil || gk.BTilde == nil {
|
|
return nil
|
|
}
|
|
// Return size info as a simple representation
|
|
return []byte{byte(len(gk.A)), byte(len(gk.BTilde))}
|
|
}
|
|
|
|
// KeyShare holds a party's secret share data.
|
|
type KeyShare struct {
|
|
Index int
|
|
SkShare structs.Vector[ring.Poly]
|
|
Seeds map[int][][]byte
|
|
MACKeys map[int][]byte
|
|
Lambda ring.Poly // Lagrange coefficient
|
|
GroupKey *GroupKey
|
|
}
|
|
|
|
// Round1Data holds a party's Round 1 output.
|
|
type Round1Data struct {
|
|
PartyID int
|
|
D structs.Matrix[ring.Poly]
|
|
MACs map[int][]byte
|
|
}
|
|
|
|
// Round2Data holds a party's Round 2 output.
|
|
type Round2Data struct {
|
|
PartyID int
|
|
Z structs.Vector[ring.Poly]
|
|
}
|
|
|
|
// Signature holds the final threshold signature.
|
|
type Signature struct {
|
|
C ring.Poly
|
|
Z structs.Vector[ring.Poly]
|
|
Delta structs.Vector[ring.Poly]
|
|
}
|
|
|
|
// GenerateKeys generates threshold key shares for n parties with threshold t.
|
|
// This runs once per epoch when the validator set changes.
|
|
func GenerateKeys(t, n int, randSource io.Reader) ([]*KeyShare, *GroupKey, error) {
|
|
if n < 2 {
|
|
return nil, nil, ErrInvalidPartyCount
|
|
}
|
|
if t < 1 || t >= n {
|
|
return nil, nil, ErrInvalidThreshold
|
|
}
|
|
|
|
// Set global params (required by sign package)
|
|
sign.K = n
|
|
sign.Threshold = t
|
|
|
|
params, err := NewParams()
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
// Generate trusted dealer key
|
|
trustedDealerKey := make([]byte, sign.KeySize)
|
|
if randSource == nil {
|
|
randSource = rand.Reader
|
|
}
|
|
if _, err := io.ReadFull(randSource, trustedDealerKey); err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
prng, err := sampling.NewKeyedPRNG(trustedDealerKey)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
uniformSampler := ring.NewUniformSampler(prng, params.R)
|
|
|
|
// Compute Lagrange coefficients for all parties
|
|
T := make([]int, n)
|
|
for i := range T {
|
|
T[i] = i
|
|
}
|
|
lagrangeCoeffs := primitives.ComputeLagrangeCoefficients(params.R, T, big.NewInt(int64(sign.Q)))
|
|
|
|
// Generate shares
|
|
A, skShares, seeds, macKeys, bTilde := sign.Gen(params.R, params.RXi, uniformSampler, trustedDealerKey, lagrangeCoeffs)
|
|
|
|
groupKey := &GroupKey{
|
|
A: A,
|
|
BTilde: bTilde,
|
|
Params: params,
|
|
}
|
|
|
|
shares := make([]*KeyShare, n)
|
|
for i := 0; i < n; i++ {
|
|
// Convert Lagrange coefficient to NTT form
|
|
lambda := params.R.NewPoly()
|
|
lambda.Copy(lagrangeCoeffs[i])
|
|
params.R.NTT(lambda, lambda)
|
|
params.R.MForm(lambda, lambda)
|
|
|
|
shares[i] = &KeyShare{
|
|
Index: i,
|
|
SkShare: skShares[i],
|
|
Seeds: seeds,
|
|
MACKeys: macKeys[i],
|
|
Lambda: lambda,
|
|
GroupKey: groupKey,
|
|
}
|
|
}
|
|
|
|
return shares, groupKey, nil
|
|
}
|
|
|
|
// Signer handles threshold signing for a single party.
|
|
type Signer struct {
|
|
share *KeyShare
|
|
party *sign.Party
|
|
params *Params
|
|
}
|
|
|
|
// NewSigner creates a signer from a key share.
|
|
func NewSigner(share *KeyShare) *Signer {
|
|
params := share.GroupKey.Params
|
|
prng, _ := sampling.NewKeyedPRNG(make([]byte, sign.KeySize))
|
|
uniformSampler := ring.NewUniformSampler(prng, params.R)
|
|
|
|
party := sign.NewParty(share.Index, params.R, params.RXi, params.RNu, uniformSampler)
|
|
party.SkShare = share.SkShare
|
|
party.Seed = share.Seeds
|
|
party.MACKeys = share.MACKeys
|
|
party.Lambda = share.Lambda
|
|
|
|
return &Signer{
|
|
share: share,
|
|
party: party,
|
|
params: params,
|
|
}
|
|
}
|
|
|
|
// Round1 performs signing round 1. Returns D matrix and MACs to broadcast.
|
|
func (s *Signer) Round1(sessionID int, prfKey []byte, signers []int) *Round1Data {
|
|
D, MACs := s.party.SignRound1(s.share.GroupKey.A, sessionID, prfKey, signers)
|
|
return &Round1Data{
|
|
PartyID: s.share.Index,
|
|
D: D,
|
|
MACs: MACs,
|
|
}
|
|
}
|
|
|
|
// Round2 performs signing round 2. Returns z share to broadcast.
|
|
// round1Data is the collected Round 1 data from all signers.
|
|
func (s *Signer) Round2(sessionID int, message string, prfKey []byte, signers []int, round1Data map[int]*Round1Data) (*Round2Data, error) {
|
|
if len(round1Data) < len(signers) {
|
|
return nil, ErrInsufficientData
|
|
}
|
|
|
|
// Collect D matrices and MACs
|
|
D := make(map[int]structs.Matrix[ring.Poly])
|
|
MACs := make(map[int]map[int][]byte)
|
|
for _, data := range round1Data {
|
|
D[data.PartyID] = data.D
|
|
MACs[data.PartyID] = data.MACs
|
|
}
|
|
|
|
// Preprocess: verify MACs and compute aggregated D
|
|
valid, DSum, hash := s.party.SignRound2Preprocess(
|
|
s.share.GroupKey.A,
|
|
s.share.GroupKey.BTilde,
|
|
D,
|
|
MACs,
|
|
sessionID,
|
|
signers,
|
|
)
|
|
if !valid {
|
|
return nil, ErrMACVerifyFailed
|
|
}
|
|
|
|
// Compute z share
|
|
z := s.party.SignRound2(
|
|
s.share.GroupKey.A,
|
|
s.share.GroupKey.BTilde,
|
|
DSum,
|
|
sessionID,
|
|
message,
|
|
signers,
|
|
prfKey,
|
|
hash,
|
|
)
|
|
|
|
return &Round2Data{
|
|
PartyID: s.share.Index,
|
|
Z: z,
|
|
}, nil
|
|
}
|
|
|
|
// Finalize aggregates z shares into the final signature.
|
|
// Any party can call this with the collected Round 2 data.
|
|
func (s *Signer) Finalize(round2Data map[int]*Round2Data) (*Signature, error) {
|
|
if len(round2Data) == 0 {
|
|
return nil, ErrInsufficientData
|
|
}
|
|
|
|
// Collect z vectors
|
|
z := make(map[int]structs.Vector[ring.Poly])
|
|
for _, data := range round2Data {
|
|
z[data.PartyID] = data.Z
|
|
}
|
|
|
|
c, zSum, delta := s.party.SignFinalize(z, s.share.GroupKey.A, s.share.GroupKey.BTilde)
|
|
return &Signature{
|
|
C: c,
|
|
Z: zSum,
|
|
Delta: delta,
|
|
}, nil
|
|
}
|
|
|
|
// Verify checks if a signature is valid for the given message.
|
|
func Verify(groupKey *GroupKey, message string, sig *Signature) bool {
|
|
if groupKey == nil || sig == nil {
|
|
return false
|
|
}
|
|
return sign.Verify(
|
|
groupKey.Params.R,
|
|
groupKey.Params.RXi,
|
|
groupKey.Params.RNu,
|
|
sig.Z,
|
|
groupKey.A,
|
|
message,
|
|
groupKey.BTilde,
|
|
sig.C,
|
|
sig.Delta,
|
|
)
|
|
}
|