nofips.go 76 B

12345678
  1. //go:build !fips
  2. package fips
  3. func IsFipsEnabled() bool {
  4. return false
  5. }