Files
sonr/crypto/core/curves/sp256_curve.go
T

12 lines
157 B
Go
Raw Normal View History

2024-07-05 22:20:13 -04:00
package curves
import (
"crypto/elliptic"
"github.com/ethereum/go-ethereum/crypto/secp256k1"
)
func SP256() elliptic.Curve {
return secp256k1.S256()
}