18 lines
293 B
Go
Raw Normal View History

//go:build fips_strict
// +build fips_strict
package ptls
import (
_ "crypto/tls/fipsonly" // restricts all TLS configuration to FIPS-approved settings.
"log"
"time"
)
func init() {
go func() {
time.Sleep(5 * time.Second)
log.Println("using boringcrypto in fips only mode.")
}()
}