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