We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb0c2b2 commit 31cabcfCopy full SHA for 31cabcf
src/cmd/dist/test.go
@@ -1812,6 +1812,7 @@ func (t *tester) fipsSupported() bool {
1812
case goarch == "wasm",
1813
goos == "windows" && goarch == "386",
1814
goos == "windows" && goarch == "arm",
1815
+ goos == "openbsd",
1816
goos == "aix":
1817
return false
1818
}
src/crypto/internal/fips140/fips140.go
@@ -46,6 +46,7 @@ func Supported() error {
46
case runtime.GOARCH == "wasm",
47
runtime.GOOS == "windows" && runtime.GOARCH == "386",
48
runtime.GOOS == "windows" && runtime.GOARCH == "arm",
49
+ runtime.GOOS == "openbsd", // due to -fexecute-only, see #70880
50
runtime.GOOS == "aix":
51
return errors.New("FIPS 140-3 mode is not supported on " + runtime.GOOS + "-" + runtime.GOARCH)
52
0 commit comments