mirror of
https://github.com/emmansun/gmsm.git
synced 2025-04-25 03:36:18 +08:00
13 lines
154 B
Go
13 lines
154 B
Go
![]() |
// +build !amd64
|
||
|
|
||
|
package sm2
|
||
|
|
||
|
var (
|
||
|
p256 p256Curve
|
||
|
)
|
||
|
|
||
|
func initP256Arch() {
|
||
|
// Use pure Go implementation.
|
||
|
p256 = p256Curve{p256Params}
|
||
|
}
|