mirror of
https://github.com/slackhq/nebula.git
synced 2025-11-10 01:53:58 +01:00
This will replace boring crypto at some point. We should modify our protocol a bit and instead change to NewGCMWithRandomNonce.
15 lines
233 B
Go
15 lines
233 B
Go
//go:build !boringcrypto && !fips140
|
|
// +build !boringcrypto,!fips140
|
|
|
|
package noiseutil
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestEncryptLockNeeded(t *testing.T) {
|
|
assert.False(t, EncryptLockNeeded)
|
|
}
|