diff --git a/badlinkname.go b/badlinkname.go index 4eef04d..841030a 100644 --- a/badlinkname.go +++ b/badlinkname.go @@ -12,7 +12,6 @@ import _ "unsafe" // This may change in the future. Please do not depend on them // in new code. -//go:linkname aeadAESGCMTLS13 //go:linkname cipherSuiteTLS13ByID //go:linkname errShutdown diff --git a/cipher_suites.go b/cipher_suites.go index 5f37bf6..b2f330b 100644 --- a/cipher_suites.go +++ b/cipher_suites.go @@ -533,6 +533,15 @@ func aeadAESGCM(key, noncePrefix []byte) aead { return ret } +// aeadAESGCMTLS13 should be an internal detail, +// but widely used packages access it using linkname. +// Notable members of the hall of shame include: +// - github.com/xtls/xray-core +// +// Do not remove or change the type signature. +// See go.dev/issue/67401. +// +//go:linkname aeadAESGCMTLS13 func aeadAESGCMTLS13(key, nonceMask []byte) aead { if len(nonceMask) != aeadNonceLength { panic("tls: internal error: wrong nonce length") diff --git a/common.go b/common.go index 601d5b8..498d345 100644 --- a/common.go +++ b/common.go @@ -25,6 +25,7 @@ import ( "strings" "sync" "time" + _ "unsafe" // for linkname ) const ( @@ -1129,6 +1130,15 @@ func (c *Config) mutualVersion(isClient bool, peerVersions []uint16) (uint16, bo return 0, false } +// errNoCertificates should be an internal detail, +// but widely used packages access it using linkname. +// Notable members of the hall of shame include: +// - github.com/xtls/xray-core +// +// Do not remove or change the type signature. +// See go.dev/issue/67401. +// +//go:linkname errNoCertificates var errNoCertificates = errors.New("tls: no certificates configured") // getCertificate returns the best certificate for the given ClientHelloInfo,