You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can reduce code duplication used for the FIPS check by using
LabKit's implementation.
LabKit uses the `fips` tag instead of the `boringcrypto` tag, which is
deprecated in any case and replaced with `GOEXPERIMENT=boringcrypto`
due to golang/go#51940.
This commit changes the message on a FIPS system from:
```
FIPS mode enabled. Using BoringSSL.
```
to:
```
FIPS mode is enabled. Using an external SSL library.
```
On a non-FIPS system, this commit changes the message from:
```
GitLab Runner was compiled with FIPS mode but BoringSSL is not enabled.
```
to:
```
Binary was compiled with FIPS mode, but an external SSL library was not enabled.
```
0 commit comments