Files
crypto/core/curves/sp256_curve.go
T

12 lines
129 B
Go

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