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