Source file src/crypto/elliptic/export_generate.go
1 // Copyright 2021 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 //go:build tablegen 6 7 package elliptic 8 9 // This block exports p256-related internals for the p256 table generator in internal/gen. 10 var ( 11 P256PointDoubleAsm = p256PointDoubleAsm 12 P256PointAddAsm = p256PointAddAsm 13 P256Inverse = p256Inverse 14 P256Sqr = p256Sqr 15 P256Mul = p256Mul 16 ) 17