mirror of
https://github.com/slackhq/nebula.git
synced 2026-05-16 04:47:38 +02:00
14 lines
221 B
Go
14 lines
221 B
Go
//go:build !boringcrypto && !fips140v1.0 && !fips140v1.26
|
|
|
|
package noiseutil
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestEncryptLockNeeded(t *testing.T) {
|
|
assert.False(t, EncryptLockNeeded)
|
|
}
|