notboring_test.go 241 B

1234567891011121314
  1. //go:build !boringcrypto && !fips140v1.0
  2. // +build !boringcrypto,!fips140v1.0
  3. package noiseutil
  4. import (
  5. "testing"
  6. "github.com/stretchr/testify/assert"
  7. )
  8. func TestEncryptLockNeeded(t *testing.T) {
  9. assert.False(t, EncryptLockNeeded)
  10. }