go-fips/fips_off.go

16 lines
205 B
Go

// +build !fips
package fips
func mode() (ONOFF, error) {
return OFF, ErrFipsDisabled
}
func modeSet(mode ONOFF) (ONOFF, error) {
return OFF, ErrFipsDisabled
}
func lastError() string {
return ""
}