cleanup, no GODEBUG needed

This commit is contained in:
Wade Simmons
2026-04-28 11:58:43 -04:00
parent 65450f9d21
commit ae58085032
9 changed files with 50 additions and 70 deletions

View File

@@ -4,4 +4,9 @@ package nebula
import "crypto/boring"
var boringEnabled = boring.Enabled
func getFIPS140() string {
if boring.Enabled() {
return "boringcrypto"
}
return "off"
}