Source File
boring.go
Belonging Package
github.com/tmc/go-iroh/internal/itls/shim/boring
// Package boring is a minimal shim for the GOROOT-private crypto/internal/boring.// BoringCrypto is always disabled here, so the standard Go crypto paths are used.package boringimport ()// Enabled reports whether BoringCrypto is in use. Always false in this shim.const Enabled = false// Unreachable marks code that should be unreachable when BoringCrypto is// enabled. It is a no-op here.func () {}// NewGCMTLS is never called because Enabled is false.func (cipher.Block) (cipher.AEAD, error) {return nil, errors.New("boring: disabled")}// NewGCMTLS13 is never called because Enabled is false.func (cipher.Block) (cipher.AEAD, error) {return nil, errors.New("boring: disabled")}
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |