Files
nebula/cmd/nebula-cert/fips140.go
T
Wade Simmons 06fb503fc3 WIP
2026-06-09 10:31:49 -04:00

14 lines
261 B
Go

//go:build fips140
package main
import (
"crypto/fips140"
)
func init() {
if !fips140.Enforced() {
panic("Nebula compiled with fips140 expects FIPS140 to be enforced. Do not set GODEBUG=fips140, or if you do it must be set as GODEBUG=fips140=only")
}
}