mirror of
https://github.com/emmansun/gmsm.git
synced 2025-04-24 11:16:20 +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}
|
|
}
|