nebula/notboring.go
Wade Simmons 0b67b19771
add boringcrypto Makefile targets (#856)
This adds a few build targets to compile with `GOEXPERIMENT=boringcrypto`:

- `bin-boringcrypto`
- `release-boringcrypto`

It also adds a field to the intial start up log indicating if
boringcrypto is enabled in the binary.
2023-05-04 15:42:45 -04:00

7 lines
115 B
Go

//go:build !boringcrypto
// +build !boringcrypto
package nebula
var boringEnabled = func() bool { return false }