13 lines
371 B
Go
13 lines
371 B
Go
|
// Copyright 2023 the Pinniped contributors. All Rights Reserved.
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
//go:build fips_strict
|
||
|
// +build fips_strict
|
||
|
|
||
|
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.
|
||
|
)
|