Skip to content

Commit

Permalink
rebased on latest utls for psk and pq;
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdanfinn committed Sep 12, 2023
1 parent a73bee0 commit 1e707fb
Show file tree
Hide file tree
Showing 16 changed files with 386 additions and 125 deletions.
4 changes: 2 additions & 2 deletions cffi_dist/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ GOOS=darwin CGO_ENABLED=1 GOARCH=amd64 go build -buildmode=c-shared -o ./dist/tl
echo 'Build Linux ARM64'
# CC is needed when you cross compile from OSX to Linux
# On Macos:
# GOOS=linux CGO_ENABLED=1 GOARCH=arm64 CC="aarch64-unknown-linux-gnu-gcc" go build -buildmode=c-shared -o ./dist/tls-client-linux-arm64-$1.so
GOOS=linux CGO_ENABLED=1 GOARCH=arm64 CC="aarch64-unknown-linux-gnu-gcc" go build -buildmode=c-shared -o ./dist/tls-client-linux-arm64-$1.so

# On Linux:
GOOS=linux CGO_ENABLED=1 GOARCH=arm64 CC="aarch64-linux-gnu-gcc" go build -buildmode=c-shared -o ./dist/tls-client-linux-arm64-$1.so
#GOOS=linux CGO_ENABLED=1 GOARCH=arm64 CC="aarch64-linux-gnu-gcc" go build -buildmode=c-shared -o ./dist/tls-client-linux-arm64-$1.so

echo 'Build Linux ARMv7'
# CC is needed when you cross compile from OSX to Linux
Expand Down
1 change: 1 addition & 0 deletions client_options.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ type httpClientConfig struct {
forceHttp1 bool
timeout time.Duration
localAddr *net.TCPAddr

// Establish a connection to origin server via ipv4 only
disableIPV6 bool
}
Expand Down
36 changes: 18 additions & 18 deletions custom_profiles.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var ZalandoAndroidMobile = ClientProfile{
},
Extensions: []tls.TLSExtension{
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateOnceAsClient},
&tls.SupportedCurvesExtension{Curves: []tls.CurveID{
tls.X25519,
Expand Down Expand Up @@ -128,7 +128,7 @@ var ZalandoIosMobile = ClientProfile{
Extensions: []tls.TLSExtension{
&tls.UtlsGREASEExtension{},
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateOnceAsClient},
&tls.SupportedCurvesExtension{Curves: []tls.CurveID{
tls.CurveID(tls.GREASE_PLACEHOLDER),
Expand Down Expand Up @@ -229,7 +229,7 @@ var NikeIosMobile = ClientProfile{
Extensions: []tls.TLSExtension{
&tls.UtlsGREASEExtension{},
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateOnceAsClient},
&tls.SupportedCurvesExtension{Curves: []tls.CurveID{
tls.CurveID(tls.GREASE_PLACEHOLDER),
Expand Down Expand Up @@ -330,7 +330,7 @@ var NikeAndroidMobile = ClientProfile{
},
Extensions: []tls.TLSExtension{
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateOnceAsClient},
&tls.SupportedCurvesExtension{Curves: []tls.CurveID{
tls.X25519,
Expand Down Expand Up @@ -424,7 +424,7 @@ var CloudflareCustom = ClientProfile{
// due to that we do not care about http2 frame settings
&tls.ALPNExtension{AlpnProtocols: []string{"http/1.1"}},
&tls.GenericExtension{Id: 22}, // encrypt_then_mac
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.SignatureAlgorithmsExtension{SupportedSignatureAlgorithms: []tls.SignatureScheme{
tls.ECDSAWithP256AndSHA256,
tls.ECDSAWithP384AndSHA384,
Expand Down Expand Up @@ -511,7 +511,7 @@ var MMSIos = ClientProfile{
},
Extensions: []tls.TLSExtension{
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateOnceAsClient},
&tls.SupportedCurvesExtension{Curves: []tls.CurveID{
tls.CurveID(0x001d),
Expand Down Expand Up @@ -601,7 +601,7 @@ var MeshIos = ClientProfile{
Extensions: []tls.TLSExtension{
&tls.UtlsGREASEExtension{},
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateOnceAsClient},
&tls.SupportedCurvesExtension{Curves: []tls.CurveID{
tls.CurveID(tls.GREASE_PLACEHOLDER),
Expand Down Expand Up @@ -706,7 +706,7 @@ var MeshAndroid = ClientProfile{
Extensions: []tls.TLSExtension{
&tls.UtlsGREASEExtension{},
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateOnceAsClient},
&tls.SupportedCurvesExtension{Curves: []tls.CurveID{
tls.CurveID(tls.GREASE_PLACEHOLDER),
Expand Down Expand Up @@ -746,7 +746,7 @@ var MeshAndroid = ClientProfile{
&tls.UtlsCompressCertExtension{Algorithms: []tls.CertCompressionAlgo{
tls.CertCompressionBrotli,
}},
&tls.ALPSExtension{SupportedProtocols: []string{}},
&tls.ApplicationSettingsExtension{SupportedProtocols: []string{}},
&tls.UtlsGREASEExtension{},
&tls.UtlsPaddingExtension{GetPaddingLen: tls.BoringPaddingStyle},
},
Expand Down Expand Up @@ -807,7 +807,7 @@ var MeshIos2 = ClientProfile{
Extensions: []tls.TLSExtension{
&tls.UtlsGREASEExtension{},
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateOnceAsClient},
&tls.SupportedCurvesExtension{Curves: []tls.CurveID{
tls.CurveID(tls.GREASE_PLACEHOLDER),
Expand Down Expand Up @@ -904,7 +904,7 @@ var MeshAndroid2 = ClientProfile{
Extensions: []tls.TLSExtension{
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateOnceAsClient},
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.SessionTicketExtension{},
&tls.SignatureAlgorithmsExtension{SupportedSignatureAlgorithms: []tls.SignatureScheme{
tls.ECDSAWithP256AndSHA256,
Expand Down Expand Up @@ -982,7 +982,7 @@ var ConfirmedIos = ClientProfile{
Extensions: []tls.TLSExtension{
&tls.UtlsGREASEExtension{},
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateOnceAsClient},
&tls.SupportedCurvesExtension{Curves: []tls.CurveID{
tls.CurveID(tls.GREASE_PLACEHOLDER),
Expand Down Expand Up @@ -1083,7 +1083,7 @@ var ConfirmedAndroid = ClientProfile{
Extensions: []tls.TLSExtension{
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateNever},
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.SessionTicketExtension{},
&tls.SignatureAlgorithmsExtension{SupportedSignatureAlgorithms: []tls.SignatureScheme{
tls.ECDSAWithP256AndSHA256,
Expand Down Expand Up @@ -1153,7 +1153,7 @@ var ConfirmedAndroid2 = ClientProfile{
Extensions: []tls.TLSExtension{
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateNever},
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.SessionTicketExtension{},
&tls.SignatureAlgorithmsExtension{SupportedSignatureAlgorithms: []tls.SignatureScheme{
tls.ECDSAWithP256AndSHA256,
Expand Down Expand Up @@ -1299,7 +1299,7 @@ var Okhttp4Android10 = ClientProfile{
},
Extensions: []tls.TLSExtension{
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateNever},
&tls.SupportedCurvesExtension{Curves: []tls.CurveID{
tls.X25519,
Expand Down Expand Up @@ -1381,7 +1381,7 @@ var Okhttp4Android9 = ClientProfile{
Extensions: []tls.TLSExtension{
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateNever},
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.SessionTicketExtension{},
&tls.SignatureAlgorithmsExtension{SupportedSignatureAlgorithms: []tls.SignatureScheme{
tls.ECDSAWithP256AndSHA256,
Expand Down Expand Up @@ -1452,7 +1452,7 @@ var Okhttp4Android8 = ClientProfile{
Extensions: []tls.TLSExtension{
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateNever},
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.SessionTicketExtension{},
&tls.SignatureAlgorithmsExtension{SupportedSignatureAlgorithms: []tls.SignatureScheme{
tls.ECDSAWithP256AndSHA256,
Expand Down Expand Up @@ -1521,7 +1521,7 @@ var Okhttp4Android7 = ClientProfile{
Extensions: []tls.TLSExtension{
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateNever},
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.SessionTicketExtension{},
&tls.SignatureAlgorithmsExtension{SupportedSignatureAlgorithms: []tls.SignatureScheme{
tls.PKCS1WithSHA512,
Expand Down
65 changes: 61 additions & 4 deletions example/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import (
http "github.com/bogdanfinn/fhttp"
"github.com/bogdanfinn/fhttp/http2"
tls_client "github.com/bogdanfinn/tls-client"
"github.com/bogdanfinn/tls-client/shared"
tls "github.com/bogdanfinn/utls"
)

Expand All @@ -28,6 +27,64 @@ func main() {
downloadImageWithTlsClient()
}

type TlsApiResponse struct {
IP string `json:"ip"`
HTTPVersion string `json:"http_version"`
Method string `json:"method"`
TLS struct {
Ciphers []string `json:"ciphers"`
Extensions []struct {
Name string `json:"name"`
ServerName string `json:"server_name,omitempty"`
Data string `json:"data,omitempty"`
SupportedGroups []string `json:"supported_groups,omitempty"`
EllipticCurvesPointFormats interface{} `json:"elliptic_curves_point_formats,omitempty"`
Protocols []string `json:"protocols,omitempty"`
StatusRequest struct {
CertificateStatusType string `json:"certificate_status_type"`
ResponderIDListLength int `json:"responder_id_list_length"`
RequestExtensionsLength int `json:"request_extensions_length"`
} `json:"status_request,omitempty"`
SignatureAlgorithms []string `json:"signature_algorithms,omitempty"`
SharedKeys []struct {
TLSGrease0X7A7A string `json:"TLS_GREASE (0x7a7a),omitempty"`
X2551929 string `json:"X25519 (29),omitempty"`
} `json:"shared_keys,omitempty"`
PskKeyExchangeMode string `json:"PSK_Key_Exchange_Mode,omitempty"`
Versions []string `json:"versions,omitempty"`
Algorithms []string `json:"algorithms,omitempty"`
PaddingDataLength int `json:"padding_data_length,omitempty"`
} `json:"extensions"`
TLSVersionRecord string `json:"tls_version_record"`
TLSVersionNegotiated string `json:"tls_version_negotiated"`
Ja3 string `json:"ja3"`
Ja3Hash string `json:"ja3_hash"`
ClientRandom string `json:"client_random"`
SessionID string `json:"session_id"`
} `json:"tls"`
HTTP2 struct {
AkamaiFingerprint string `json:"akamai_fingerprint"`
AkamaiFingerprintHash string `json:"akamai_fingerprint_hash"`
SentFrames []struct {
FrameType string `json:"frame_type"`
Length int `json:"length"`
Settings []string `json:"settings,omitempty"`
Increment int `json:"increment,omitempty"`
StreamID int `json:"stream_id,omitempty"`
Headers []string `json:"headers,omitempty"`
Flags []string `json:"flags,omitempty"`
Priority struct {
Weight int `json:"weight"`
DependsOn int `json:"depends_on"`
Exclusive int `json:"exclusive"`
} `json:"priority,omitempty"`
} `json:"sent_frames"`
} `json:"http2"`
HTTP1 struct {
Headers []string `json:"headers"`
} `json:"http1"`
}

func sslPinning() {
jar := tls_client.NewCookieJar()

Expand Down Expand Up @@ -426,7 +483,7 @@ func rotateProxiesOnClient() {
return
}

tlsApiResponse := shared.TlsApiResponse{}
tlsApiResponse := TlsApiResponse{}
if err := json.Unmarshal(readBytes, &tlsApiResponse); err != nil {
log.Println(err)
return
Expand Down Expand Up @@ -455,7 +512,7 @@ func rotateProxiesOnClient() {
return
}

tlsApiResponse = shared.TlsApiResponse{}
tlsApiResponse = TlsApiResponse{}
if err := json.Unmarshal(readBytes, &tlsApiResponse); err != nil {
log.Println(err)
return
Expand Down Expand Up @@ -513,7 +570,7 @@ func requestWithCustomClient() {
Extensions: []tls.TLSExtension{
&tls.UtlsGREASEExtension{},
&tls.SNIExtension{},
&tls.UtlsExtendedMasterSecretExtension{},
&tls.ExtendedMasterSecretExtension{},
&tls.RenegotiationInfoExtension{Renegotiation: tls.RenegotiateOnceAsClient},
&tls.SupportedCurvesExtension{Curves: []tls.CurveID{
tls.CurveID(tls.GREASE_PLACEHOLDER),
Expand Down
20 changes: 12 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,26 @@ module github.com/bogdanfinn/tls-client
go 1.20

require (
github.com/bogdanfinn/fhttp v0.5.24
github.com/bogdanfinn/utls v1.5.16
github.com/bogdanfinn/fhttp v0.5.25-public-test
github.com/bogdanfinn/utls v1.6.0-beta-2
github.com/google/uuid v1.3.0
github.com/stretchr/testify v1.8.0
github.com/tam7t/hpkp v0.0.0-20160821193359-2b70b4024ed5
golang.org/x/net v0.5.0
golang.org/x/net v0.14.0
)

require (
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/andybalholm/brotli v1.0.5 // indirect
github.com/cloudflare/circl v1.3.3 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/klauspost/compress v1.15.12 // indirect
github.com/gaukas/godicttls v0.0.4 // indirect
github.com/klauspost/compress v1.16.7 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.1.0 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/text v0.6.0 // indirect
github.com/quic-go/quic-go v0.37.4 // indirect
golang.org/x/crypto v0.12.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/text v0.12.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

Expand Down
55 changes: 38 additions & 17 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,35 +1,56 @@
github.com/andybalholm/brotli v1.0.4 h1:V7DdXeJtZscaqfNuAdSRuRFzuiKlHSC/Zh3zl9qY3JY=
github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
github.com/bogdanfinn/fhttp v0.5.24 h1:OlyBKjvJp6a3TotN3wuj4mQHHRbfK7QUMrzCPOZGhRc=
github.com/bogdanfinn/fhttp v0.5.24/go.mod h1:brqi5woc5eSCVHdKYBV8aZLbO7HGqpwyDLeXW+fT18I=
github.com/bogdanfinn/utls v1.5.16 h1:NhhWkegEcYETBMj9nvgO4lwvc6NcLH+znrXzO3gnw4M=
github.com/bogdanfinn/utls v1.5.16/go.mod h1:mHeRCi69cUiEyVBkKONB1cAbLjRcZnlJbGzttmiuK4o=
github.com/andybalholm/brotli v1.0.5 h1:8uQZIdzKmjc/iuPu7O2ioW48L81FgatrcpfFmiq/cCs=
github.com/andybalholm/brotli v1.0.5/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
github.com/bogdanfinn/fhttp v0.5.25-public-test h1:2H2JgBDMRfYwJTr7u3bm8K5V6AsMRF7iLUa8sdt5EaA=
github.com/bogdanfinn/fhttp v0.5.25-public-test/go.mod h1:o+CzyQRQ+gQRG/ok6AIQKEXIL8ZyGM0wPRfifuU7JK0=
github.com/bogdanfinn/utls v1.6.0-beta-2 h1:f/u3WICv2/GD44JofwajjMGhqgyCPMpc9Ou1HYVMjnA=
github.com/bogdanfinn/utls v1.6.0-beta-2/go.mod h1:VQBQ4r9Ks905rxLidZpdRWO1bFk4SyILUVPEyC7zBIY=
github.com/cloudflare/circl v1.3.3 h1:fE/Qz0QdIGqeWfnwq0RE0R7MI51s0M2E4Ga9kq5AEMs=
github.com/cloudflare/circl v1.3.3/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/gaukas/godicttls v0.0.4 h1:NlRaXb3J6hAnTmWdsEKb9bcSBD6BvcIjdGdeb0zfXbk=
github.com/gaukas/godicttls v0.0.4/go.mod h1:l6EenT4TLWgTdwslVb4sEMOCf7Bv0JAK67deKr9/NCI=
github.com/go-logr/logr v1.2.4 h1:g01GSCwiDw2xSZfjJ2/T9M+S6pFdcNtFYsp+Y43HYDQ=
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI=
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 h1:yAJXTCF9TqKcTiHJAE8dj7HMvPfh66eeA2JYW7eFpSE=
github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/klauspost/compress v1.15.12 h1:YClS/PImqYbn+UILDnqxQCZ3RehC9N318SU3kElDUEM=
github.com/klauspost/compress v1.15.12/go.mod h1:QPwzmACJjUTFsnSHH934V6woptycfrDDJnH7hvFVbGM=
github.com/klauspost/compress v1.16.7 h1:2mk3MPGNzKyxErAw8YaohYh69+pa4sIQSC0fPGCFR9I=
github.com/klauspost/compress v1.16.7/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE=
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/onsi/ginkgo/v2 v2.9.5 h1:+6Hr4uxzP4XIUyAkg61dWBw8lb/gc4/X5luuxN/EC+Q=
github.com/onsi/gomega v1.27.6 h1:ENqfyGeS5AX/rlXDd/ETokDz93u0YufY1Pgxuy/PvWE=
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/quic-go/quic-go v0.37.4 h1:ke8B73yMCWGq9MfrCCAw0Uzdm7GaViC3i39dsIdDlH4=
github.com/quic-go/quic-go v0.37.4/go.mod h1:YsbH1r4mSHPJcLF4k4zruUkLBqctEMBDR6VPvcYjIsU=
github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8=
github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk=
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
github.com/tam7t/hpkp v0.0.0-20160821193359-2b70b4024ed5 h1:YqAladjX7xpA6BM04leXMWAEjS0mTZ5kUU9KRBriQJc=
github.com/tam7t/hpkp v0.0.0-20160821193359-2b70b4024ed5/go.mod h1:2JjD2zLQYH5HO74y5+aE3remJQvl6q4Sn6aWA2wD1Ng=
golang.org/x/crypto v0.1.0 h1:MDRAIl0xIo9Io2xV565hzXHw3zVseKrJKodhohM5CjU=
golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw=
golang.org/x/net v0.5.0 h1:GyT4nK/YDHSqa1c4753ouYCDajOYKTja9Xb/OHtgvSw=
golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws=
golang.org/x/sys v0.4.0 h1:Zr2JFtRQNX3BCZ8YtxRE9hNJYC8J6I1MVbMg6owUp18=
golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/text v0.6.0 h1:3XmdazWV+ubf7QgHSTWeykHOci5oeekaGJBLkrkaw4k=
golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
golang.org/x/crypto v0.12.0 h1:tFM/ta59kqch6LlvYnPa0yx5a83cL2nHflFhYKvv9Yk=
golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw=
golang.org/x/net v0.14.0 h1:BONx9s002vGdD9umnlX1Po8vOZmrgH34qlHcD1MfK14=
golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI=
golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM=
golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/text v0.12.0 h1:k+n5B8goJNdU7hSvEtMUz3d1Q6D/XW4COJSJR6fN0mc=
golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
golang.org/x/tools v0.9.1 h1:8WMNJAz3zrtPmnYC7ISf5dEn3MT0gY7jBJfw27yrrLo=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
Loading

0 comments on commit 1e707fb

Please sign in to comment.