mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
- **refactor: remove unused auth components** - **refactor: improve devbox configuration and deployment process** - **refactor: improve devnet and testnet setup** - **fix: update templ version to v0.2.778** - **refactor: rename pkl/net.matrix to pkl/matrix.net** - **refactor: migrate webapp components to nebula** - **refactor: protobuf types** - **chore: update dependencies for improved security and stability** - **feat: implement landing page and vault gateway servers** - **refactor: Migrate data models to new module structure and update related files** - **feature/1121-implement-ucan-validation** - **refactor: Replace hardcoded constants with model types in attns.go** - **feature/1121-implement-ucan-validation** - **chore: add origin Host struct and update main function to handle multiple hosts** - **build: remove unused static files from dwn module** - **build: remove unused static files from dwn module** - **refactor: Move DWN models to common package** - **refactor: move models to pkg/common** - **refactor: move vault web app assets to embed module** - **refactor: update session middleware import path** - **chore: configure port labels and auto-forwarding behavior** - **feat: enhance devcontainer configuration** - **feat: Add UCAN middleware for Echo with flexible token validation** - **feat: add JWT middleware for UCAN authentication** - **refactor: update package URI and versioning in PklProject files** - **fix: correct sonr.pkl import path** - **refactor: move JWT related code to auth package** - **feat: introduce vault configuration retrieval and management** - **refactor: Move vault components to gateway module and update file paths** - **refactor: remove Dexie and SQLite database implementations** - **feat: enhance frontend with PWA features and WASM integration** - **feat: add Devbox features and streamline Dockerfile** - **chore: update dependencies to include TigerBeetle** - **chore(deps): update go version to 1.23** - **feat: enhance devnet setup with PATH environment variable and updated PWA manifest** - **fix: upgrade tigerbeetle-go dependency and remove indirect dependency** - **feat: add PostgreSQL support to devnet and testnet deployments** - **refactor: rename keyshare cookie to token cookie** - **feat: upgrade Go version to 1.23.3 and update dependencies** - **refactor: update devnet and testnet configurations** - **feat: add IPFS configuration for devnet** - **I'll help you update the ipfs.config.pkl to include all the peers from the shell script. Here's the updated configuration:** - **refactor: move mpc package to crypto directory** - **feat: add BIP32 support for various cryptocurrencies** - **feat: enhance ATN.pkl with additional capabilities** - **refactor: simplify smart account and vault attenuation creation** - **feat: add new capabilities to the Attenuation type** - **refactor: Rename MPC files for clarity and consistency** - **feat: add DIDKey support for cryptographic operations** - **feat: add devnet and testnet deployment configurations** - **fix: correct key derivation in bip32 package** - **refactor: rename crypto/bip32 package to crypto/accaddr** - **fix: remove duplicate indirect dependency** - **refactor: move vault package to root directory** - **refactor: update routes for gateway and vault** - **refactor: remove obsolete web configuration file** - **refactor: remove unused TigerBeetle imports and update host configuration** - **refactor: adjust styles directory path** - **feat: add broadcastTx and simulateTx functions to gateway** - **feat: add PinVault handler**
153 lines
4.0 KiB
Go
Executable File
153 lines
4.0 KiB
Go
Executable File
//
|
|
// Copyright Coinbase, Inc. All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package sharing
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/onsonr/sonr/crypto/core/curves"
|
|
)
|
|
|
|
// Pedersen Verifiable Secret Sharing Scheme
|
|
type Pedersen struct {
|
|
threshold, limit uint32
|
|
curve *curves.Curve
|
|
generator curves.Point
|
|
}
|
|
|
|
type PedersenVerifier struct {
|
|
Generator curves.Point
|
|
Commitments []curves.Point
|
|
}
|
|
|
|
func (pv PedersenVerifier) Verify(share, blindShare *ShamirShare) error {
|
|
curve := curves.GetCurveByName(pv.Generator.CurveName())
|
|
if err := share.Validate(curve); err != nil {
|
|
return err
|
|
}
|
|
if err := blindShare.Validate(curve); err != nil {
|
|
return err
|
|
}
|
|
|
|
x := curve.Scalar.New(int(share.Id))
|
|
i := curve.Scalar.One()
|
|
rhs := pv.Commitments[0]
|
|
|
|
for j := 1; j < len(pv.Commitments); j++ {
|
|
i = i.Mul(x)
|
|
rhs = rhs.Add(pv.Commitments[j].Mul(i))
|
|
}
|
|
|
|
sc, _ := curve.Scalar.SetBytes(share.Value)
|
|
bsc, _ := curve.Scalar.SetBytes(blindShare.Value)
|
|
g := pv.Commitments[0].Generator().Mul(sc)
|
|
h := pv.Generator.Mul(bsc)
|
|
lhs := g.Add(h)
|
|
|
|
if lhs.Equal(rhs) {
|
|
return nil
|
|
} else {
|
|
return fmt.Errorf("not equal")
|
|
}
|
|
}
|
|
|
|
// PedersenResult contains all the data from calling Split
|
|
type PedersenResult struct {
|
|
Blinding curves.Scalar
|
|
BlindingShares, SecretShares []*ShamirShare
|
|
FeldmanVerifier *FeldmanVerifier
|
|
PedersenVerifier *PedersenVerifier
|
|
}
|
|
|
|
// NewPedersen creates a new pedersen VSS
|
|
func NewPedersen(threshold, limit uint32, generator curves.Point) (*Pedersen, error) {
|
|
if limit < threshold {
|
|
return nil, fmt.Errorf("limit cannot be less than threshold")
|
|
}
|
|
if threshold < 2 {
|
|
return nil, fmt.Errorf("threshold cannot be less than 2")
|
|
}
|
|
if limit > 255 {
|
|
return nil, fmt.Errorf("cannot exceed 255 shares")
|
|
}
|
|
curve := curves.GetCurveByName(generator.CurveName())
|
|
if curve == nil {
|
|
return nil, fmt.Errorf("invalid curve")
|
|
}
|
|
if generator == nil {
|
|
return nil, fmt.Errorf("invalid generator")
|
|
}
|
|
if !generator.IsOnCurve() || generator.IsIdentity() {
|
|
return nil, fmt.Errorf("invalid generator")
|
|
}
|
|
return &Pedersen{threshold, limit, curve, generator}, nil
|
|
}
|
|
|
|
// Split creates the verifiers, blinding and shares
|
|
func (pd Pedersen) Split(secret curves.Scalar, reader io.Reader) (*PedersenResult, error) {
|
|
// generate a random blinding factor
|
|
blinding := pd.curve.Scalar.Random(reader)
|
|
|
|
shamir := Shamir{pd.threshold, pd.limit, pd.curve}
|
|
// split the secret into shares
|
|
shares, poly := shamir.getPolyAndShares(secret, reader)
|
|
|
|
// split the blinding into shares
|
|
blindingShares, polyBlinding := shamir.getPolyAndShares(blinding, reader)
|
|
|
|
// Generate the verifiable commitments to the polynomial for the shares
|
|
blindedverifiers := make([]curves.Point, pd.threshold)
|
|
verifiers := make([]curves.Point, pd.threshold)
|
|
|
|
// ({p0 * G + b0 * H}, ...,{pt * G + bt * H})
|
|
for i, c := range poly.Coefficients {
|
|
s := pd.curve.ScalarBaseMult(c)
|
|
b := pd.generator.Mul(polyBlinding.Coefficients[i])
|
|
bv := s.Add(b)
|
|
blindedverifiers[i] = bv
|
|
verifiers[i] = s
|
|
}
|
|
verifier1 := &FeldmanVerifier{Commitments: verifiers}
|
|
verifier2 := &PedersenVerifier{Commitments: blindedverifiers, Generator: pd.generator}
|
|
|
|
return &PedersenResult{
|
|
blinding, blindingShares, shares, verifier1, verifier2,
|
|
}, nil
|
|
}
|
|
|
|
func (pd Pedersen) LagrangeCoeffs(shares map[uint32]*ShamirShare) (map[uint32]curves.Scalar, error) {
|
|
shamir := &Shamir{
|
|
threshold: pd.threshold,
|
|
limit: pd.limit,
|
|
curve: pd.curve,
|
|
}
|
|
identities := make([]uint32, 0)
|
|
for _, xi := range shares {
|
|
identities = append(identities, xi.Id)
|
|
}
|
|
return shamir.LagrangeCoeffs(identities)
|
|
}
|
|
|
|
func (pd Pedersen) Combine(shares ...*ShamirShare) (curves.Scalar, error) {
|
|
shamir := &Shamir{
|
|
threshold: pd.threshold,
|
|
limit: pd.limit,
|
|
curve: pd.curve,
|
|
}
|
|
return shamir.Combine(shares...)
|
|
}
|
|
|
|
func (pd Pedersen) CombinePoints(shares ...*ShamirShare) (curves.Point, error) {
|
|
shamir := &Shamir{
|
|
threshold: pd.threshold,
|
|
limit: pd.limit,
|
|
curve: pd.curve,
|
|
}
|
|
return shamir.CombinePoints(shares...)
|
|
}
|