update: use boring package not global var

Align with the upstream to use `boring` as a name for a package. No functional changes.
This commit is contained in:
Gaukas Wang 2023-10-09 20:55:37 -06:00
parent eafff6815c
commit ef75789913
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D
3 changed files with 17 additions and 22 deletions

View file

@ -19,6 +19,7 @@ import (
"hash"
"runtime"
"github.com/refraction-networking/utls/internal/boring"
"golang.org/x/sys/cpu"
"golang.org/x/crypto/chacha20poly1305"

View file

@ -0,0 +1,16 @@
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
}

View file

@ -3,11 +3,6 @@
// license that can be found in the LICENSE file.
package tls
import (
"crypto/cipher"
"errors"
)
func needFIPS() bool { return false }
func supportedSignatureAlgorithms() []SignatureScheme {
@ -20,20 +15,3 @@ func fipsCurvePreferences(c *Config) []CurveID { panic("fipsCurvePreferences") }
func fipsCipherSuites(c *Config) []uint16 { panic("fipsCipherSuites") }
var fipsSupportedSignatureAlgorithms []SignatureScheme
// [uTLS]
// Boring struct is only to be used to record static env variables
// in boring package. We do not implement BoringSSL compatibliity here.
type Boring struct {
Enabled bool
}
func (*Boring) NewGCMTLS(_ cipher.Block) (cipher.AEAD, error) {
return nil, errors.New("boring not implemented")
}
func (*Boring) Unreachable() {
// do nothing
}
var boring Boring