mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-09 09:51:10 +01:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
12 lines
217 B
Go
12 lines
217 B
Go
// Copyright IBM Corp. 2016, 2025
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !fips
|
|
|
|
package constants
|
|
|
|
// IsFIPS returns true if Vault is operating in a FIPS-140-{2,3} mode.
|
|
func IsFIPS() bool {
|
|
return false
|
|
}
|