gitlab.com/gitlab-org/labkit@v1.21.0/fips/notfips.go (about) 1 //go:build !fips 2 // +build !fips 3 4 package fips 5 6 func Check() bool { 7 return false 8 } 9 10 func Enabled() bool { 11 return false 12 }