mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-11 13:29:12 +00:00
15 lines
254 B
Go
15 lines
254 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"
|
||
|
)
|
||
|
|
||
|
// Challenge generated by fiat-shamir heuristic
|
||
|
type Challenge = curves.Scalar
|