mirror of
https://github.com/sonr-io/crypto.git
synced 2026-08-02 15:31:38 +00:00
12 lines
129 B
Go
12 lines
129 B
Go
package curves
|
|
|
|
import (
|
|
"crypto/elliptic"
|
|
|
|
"github.com/dustinxie/ecc"
|
|
)
|
|
|
|
func SP256() elliptic.Curve {
|
|
return ecc.P256k1()
|
|
}
|