mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +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()
|
||
|
}
|