fips.go 111 B

123456789101112
  1. //go:build fips
  2. package fips
  3. import (
  4. _ "crypto/tls/fipsonly"
  5. )
  6. func IsFipsEnabled() bool {
  7. return true
  8. }