Files

12 lines
129 B
Go
Raw Permalink Normal View History

2025-10-09 15:10:39 -04:00
package curves
import (
"crypto/elliptic"
"github.com/dustinxie/ecc"
)
func SP256() elliptic.Curve {
return ecc.P256k1()
}