Files
sonr/crypto/core/curves/sp256_curve.go
T
Prad NukalaandGitHub 13e6c3e84d Master (#1262)
* clear

* feat: Add everything

* fix: Commenht
2025-10-03 14:45:52 -04:00

12 lines
129 B
Go

package curves
import (
"crypto/elliptic"
"github.com/dustinxie/ecc"
)
func SP256() elliptic.Curve {
return ecc.P256k1()
}