cloudflared-mirror/fips/fips.go

12 lines
111 B
Go

//go:build fips
package fips
import (
_ "crypto/tls/fipsonly"
)
func IsFipsEnabled() bool {
return true
}