mirror of
https://github.com/slackhq/nebula.git
synced 2026-05-16 12:57:38 +02:00
13 lines
158 B
Go
13 lines
158 B
Go
//go:build boringcrypto
|
|
|
|
package nebula
|
|
|
|
import "crypto/boring"
|
|
|
|
func getFIPS140() string {
|
|
if boring.Enabled() {
|
|
return "boringcrypto"
|
|
}
|
|
return "off"
|
|
}
|