mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
15 lines
296 B
Go
Executable File
15 lines
296 B
Go
Executable File
//
|
|
// Copyright Coinbase, Inc. All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package v1
|
|
|
|
import (
|
|
kryptology "github.com/onsonr/hway/crypto/core/curves"
|
|
)
|
|
|
|
// ShareVerifier is used to verify secret shares from Feldman or Pedersen VSS
|
|
type ShareVerifier = kryptology.EcPoint
|