mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-12-26 23:37:22 +00:00
12 lines
216 B
Go
12 lines
216 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// 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
|
|
}
|