diff options
| author | Russ Cox <rsc@golang.org> | 2024-11-20 09:03:35 -0500 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2024-11-20 20:28:34 +0000 |
| commit | 4a3cef2036097d323b6cc0bbe90fc4d8c7588660 (patch) | |
| tree | 781c49601ff4013959343f2b1fa13d1a4147c9f3 /src/runtime/panic.go | |
| parent | 5254e989425648ff62faa270948bb927b6568ff3 (diff) | |
| download | go-4a3cef2036097d323b6cc0bbe90fc4d8c7588660.tar.xz | |
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 <filippo@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Russ Cox <rsc@golang.org>
Reviewed-by: Roland Shoemaker <roland@golang.org>
Diffstat (limited to 'src/runtime/panic.go')
| -rw-r--r-- | src/runtime/panic.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) } |
