blob: 48954a2e9c94897e1ea7926d9a5b58fa376f9558 [file] [log] [blame]
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// -build !amd64,!s390x,!arm64
package elliptic
var (
p256 p256Curve
)
func initP256Arch() {
// Use pure Go implementation.
p256 = p256Curve{p256Params}
}