Margo Crawford 77737039af
Fips only mode
Signed-off-by: Margo Crawford <margaretc@vmware.com>
2022-03-29 14:40:11 -04:00

14 lines
220 B
Go

//go:build fips_strict
// +build fips_strict
package ptls
import (
_ "crypto/tls/fipsonly" // restricts all TLS configuration to FIPS-approved settings.
"fmt"
)
func main() {
fmt.Println("using fips only mode.")
}