12 lines
111 B
Go
12 lines
111 B
Go
|
//go:build fips
|
||
|
|
||
|
package fips
|
||
|
|
||
|
import (
|
||
|
_ "crypto/tls/fipsonly"
|
||
|
)
|
||
|
|
||
|
func IsFipsEnabled() bool {
|
||
|
return true
|
||
|
}
|