2023-01-13 19:07:42 +00:00
|
|
|
// 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
|
2023-01-13 19:07:42 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
)
|