mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +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()
|
|
}
|