27bb03bbc0
* adding copyright header * fix fmt and a test
12 lines
215 B
Go
12 lines
215 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//go:build !fips
|
|
|
|
package constants
|
|
|
|
// IsFIPS returns true if Vault is operating in a FIPS-140-{2,3} mode.
|
|
func IsFIPS() bool {
|
|
return false
|
|
}
|