From 4a3cef2036097d323b6cc0bbe90fc4d8c7588660 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 20 Nov 2024 09:03:35 -0500 Subject: all: rename crypto/internal/fips to crypto/internal/fips140 Sometimes we've used the 140 suffix (GOFIPS140, crypto/fips140) and sometimes not (crypto/internal/fips, cmd/go/internal/fips). Use it always, to avoid having to remember which is which. Also, there are other FIPS standards, like AES (FIPS 197), SHA-2 (FIPS 180), and so on, which have nothing to do with FIPS 140. Best to be clear. For #70123. Change-Id: I33b29dabd9e8b2703d2af25e428f88bc81c7c307 Reviewed-on: https://go-review.googlesource.com/c/go/+/630115 Reviewed-by: Filippo Valsorda LUCI-TryBot-Result: Go LUCI Auto-Submit: Russ Cox Reviewed-by: Roland Shoemaker --- src/runtime/panic.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/runtime/panic.go') diff --git a/src/runtime/panic.go b/src/runtime/panic.go index 8e8ee8559a..58606e1dce 100644 --- a/src/runtime/panic.go +++ b/src/runtime/panic.go @@ -1043,7 +1043,7 @@ func sysrand_fatal(s string) { fatal(s) } -//go:linkname fips_fatal crypto/internal/fips.fatal +//go:linkname fips_fatal crypto/internal/fips140.fatal func fips_fatal(s string) { fatal(s) } -- cgit v1.3-5-g9baa