Source file src/crypto/internal/fips140test/nistec_ordinv_fips140v1.28_test.go
1 // Copyright 2026 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 !(fips140v1.0 || fips140v1.26) 6 7 package fipstest 8 9 import ( 10 "crypto/internal/fips140/nistec" 11 "testing" 12 ) 13 14 func p256OrdInverse(t *testing.T, k *[4]uint64) { 15 nistec.P256OrdInverse(k) 16 } 17