mirror of
https://github.com/slackhq/nebula.git
synced 2025-11-08 22:13:57 +01:00
15 lines
241 B
Go
15 lines
241 B
Go
//go:build !boringcrypto && !fips140v1.0
|
|
// +build !boringcrypto,!fips140v1.0
|
|
|
|
package noiseutil
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestEncryptLockNeeded(t *testing.T) {
|
|
assert.False(t, EncryptLockNeeded)
|
|
}
|