sing-shadowtls/tls_wrapper.go
2023-02-20 13:51:43 +08:00

44 lines
1.4 KiB
Go

package shadowtls
import (
"context"
"crypto/tls"
"net"
"github.com/sagernet/sing/common"
)
type (
TLSSessionIDGeneratorFunc func(clientHello []byte, sessionID []byte) error
TLSHandshakeFunc func(
ctx context.Context,
conn net.Conn,
sessionIDGenerator TLSSessionIDGeneratorFunc, // for shadow-tls version 3
) error
)
func DefaultTLSHandshakeFunc(password string, config *tls.Config) TLSHandshakeFunc {
return func(ctx context.Context, conn net.Conn, sessionIDGenerator TLSSessionIDGeneratorFunc) error {
tlsConfig := &sTLSConfig{
Rand: config.Rand,
Time: config.Time,
VerifyPeerCertificate: config.VerifyPeerCertificate,
RootCAs: config.RootCAs,
NextProtos: config.NextProtos,
ServerName: config.ServerName,
InsecureSkipVerify: config.InsecureSkipVerify,
CipherSuites: config.CipherSuites,
MinVersion: config.MinVersion,
MaxVersion: config.MaxVersion,
CurvePreferences: common.Map(config.CurvePreferences, func(it tls.CurveID) sTLSCurveID {
return sTLSCurveID(it)
}),
SessionTicketsDisabled: config.SessionTicketsDisabled,
Renegotiation: sTLSRenegotiationSupport(config.Renegotiation),
SessionIDGenerator: generateSessionID(password),
}
tlsConn := sTLSClient(conn, tlsConfig)
return tlsConn.HandshakeContext(ctx)
}
}