2022-03-29 23:58:41 +00:00
|
|
|
// Copyright 2022 the Pinniped contributors. All Rights Reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
//go:build fips_strict
|
|
|
|
// +build fips_strict
|
|
|
|
|
|
|
|
package testlib
|
|
|
|
|
|
|
|
// Because of a bug in nmap, the cipher suite preference is
|
|
|
|
// incorrectly shown as 'client' in some cases.
|
|
|
|
// in fips-only mode, it correctly shows the cipher preference
|
|
|
|
// as 'server', while in non-fips mode it shows as 'client'.
|
2022-03-31 18:48:52 +00:00
|
|
|
const cipherSuitePreference = "server"
|