cloudflared-mirror/fips/fips.go.linux-amd64

13 lines
175 B
Plaintext
Raw Normal View History

// +build fips
package main
import (
_ "crypto/tls/fipsonly"
2025-01-20 18:36:21 +00:00
"github.com/kjake/cloudflared/cmd/cloudflared/tunnel"
)
func init () {
tunnel.FipsEnabled = true
}