mirror of
https://github.com/slackhq/nebula.git
synced 2026-07-01 02:50:29 +02:00
15 lines
209 B
Go
15 lines
209 B
Go
//go:build boringcrypto
|
|
// +build boringcrypto
|
|
|
|
package noiseutil
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestEncryptLockNeeded(t *testing.T) {
|
|
assert.True(t, EncryptLockNeeded)
|
|
}
|