utls/internal/boring/notboring.go
Gaukas Wang ef75789913
update: use boring package not global var
Align with the upstream to use `boring` as a name for a package. No functional changes.
2023-10-09 20:55:37 -06:00

16 lines
228 B
Go

package boring
import (
"crypto/cipher"
"errors"
)
const Enabled bool = false
func NewGCMTLS(_ cipher.Block) (cipher.AEAD, error) {
return nil, errors.New("boring not implemented")
}
func Unreachable() {
// do nothing
}