ContainerImage.Pinniped/internal/crypto/fips/fips_strict.go

13 lines
399 B
Go
Raw Normal View History

// Copyright 2023 the Pinniped contributors. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
2023-02-03 02:15:32 +00:00
//go:build goexperiment.boringcrypto
// +build goexperiment.boringcrypto
package fips
import (
"C" // explicitly import cgo so that runtime/cgo gets linked into the kube-cert-agent
_ "crypto/tls/fipsonly" // restricts all TLS configuration to FIPS-approved settings.
)