2021-01-28 16:10:19 +00:00
|
|
|
// +build fips
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2022-08-24 12:33:10 +00:00
|
|
|
import (
|
|
|
|
_ "crypto/tls/fipsonly"
|
2025-01-20 18:36:21 +00:00
|
|
|
"github.com/kjake/cloudflared/cmd/cloudflared/tunnel"
|
2022-08-24 12:33:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init () {
|
|
|
|
tunnel.FipsEnabled = true
|
|
|
|
}
|