mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-11 13:29:12 +00:00
15 lines
289 B
Go
15 lines
289 B
Go
|
//
|
||
|
// Copyright Coinbase, Inc. All Rights Reserved.
|
||
|
//
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
//
|
||
|
|
||
|
package common
|
||
|
|
||
|
import (
|
||
|
"github.com/onsonr/sonr/pkg/crypto/core/curves"
|
||
|
)
|
||
|
|
||
|
// SignatureBlinding is a value used for computing blind signatures
|
||
|
type SignatureBlinding = curves.PairingScalar
|