mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 02:11:40 +00:00
12 lines
157 B
Go
12 lines
157 B
Go
package curves
|
|
|
|
import (
|
|
"crypto/elliptic"
|
|
|
|
"github.com/ethereum/go-ethereum/crypto/secp256k1"
|
|
)
|
|
|
|
func SP256() elliptic.Curve {
|
|
return secp256k1.S256()
|
|
}
|