From 1fe94aad7e6460f443dcfb96d6eb88fb999030e6 Mon Sep 17 00:00:00 2001 From: Jian Wu Date: Tue, 21 Jan 2025 17:57:54 -0500 Subject: [PATCH] switching module names for proper import --- cipher_suites.go | 2 +- examples/ech/main.go | 2 +- examples/old/examples.go | 2 +- examples/tls-resumption/main.go | 2 +- go.mod | 4 ++-- internal/quicvarint/varint.go | 2 +- link_test.go | 2 +- tls_test.go | 2 +- u_clienthello_json.go | 2 +- u_common.go | 2 +- u_ech.go | 2 +- u_ech_test.go | 4 ++-- u_fingerprinter_test.go | 4 ++-- u_parrots.go | 2 +- u_prng.go | 2 +- u_quic_transport_parameters.go | 2 +- u_tls_extensions.go | 4 ++-- 17 files changed, 21 insertions(+), 21 deletions(-) diff --git a/cipher_suites.go b/cipher_suites.go index 27714fc..bd69677 100644 --- a/cipher_suites.go +++ b/cipher_suites.go @@ -19,7 +19,7 @@ import ( "hash" "runtime" - "github.com/jiwu-moz/utls/internal/boring" + "github.com/mozilla-fakespot/utls/internal/boring" "golang.org/x/sys/cpu" "golang.org/x/crypto/chacha20poly1305" diff --git a/examples/ech/main.go b/examples/ech/main.go index 20cb134..926ac8c 100644 --- a/examples/ech/main.go +++ b/examples/ech/main.go @@ -12,7 +12,7 @@ import ( "os" "time" - tls "github.com/jiwu-moz/utls" + tls "github.com/mozilla-fakespot/utls" "golang.org/x/net/http2" ) diff --git a/examples/old/examples.go b/examples/old/examples.go index 1c0b2e1..6cd6f2c 100644 --- a/examples/old/examples.go +++ b/examples/old/examples.go @@ -10,7 +10,7 @@ import ( "net/url" "time" - tls "github.com/jiwu-moz/utls" + tls "github.com/mozilla-fakespot/utls" "golang.org/x/net/http2" ) diff --git a/examples/tls-resumption/main.go b/examples/tls-resumption/main.go index 5d6f915..657d1c0 100644 --- a/examples/tls-resumption/main.go +++ b/examples/tls-resumption/main.go @@ -6,7 +6,7 @@ import ( "strings" "time" - tls "github.com/jiwu-moz/utls" + tls "github.com/mozilla-fakespot/utls" ) type ClientSessionCache struct { diff --git a/go.mod b/go.mod index db99139..40f8f41 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ -//module github.com/jiwu-moz/utls -module github.com/jiwu-moz/utls +//module github.com/mozilla-fakespot/utls +module github.com/mozilla-fakespot/utls go 1.22.5 diff --git a/internal/quicvarint/varint.go b/internal/quicvarint/varint.go index e95b10d..5c5d201 100644 --- a/internal/quicvarint/varint.go +++ b/internal/quicvarint/varint.go @@ -9,7 +9,7 @@ import ( "fmt" "io" - "github.com/jiwu-moz/utls/internal/quicvarint/protocol" + "github.com/mozilla-fakespot/utls/internal/quicvarint/protocol" ) // taken from the QUIC draft diff --git a/link_test.go b/link_test.go index 4bbd2fd..73e26b8 100644 --- a/link_test.go +++ b/link_test.go @@ -11,7 +11,7 @@ import ( "path/filepath" "testing" - "github.com/jiwu-moz/utls/testenv" + "github.com/mozilla-fakespot/utls/testenv" ) // Tests that the linker is able to remove references to the Client or Server if unused. diff --git a/tls_test.go b/tls_test.go index 5620afb..2d302eb 100644 --- a/tls_test.go +++ b/tls_test.go @@ -22,7 +22,7 @@ import ( "testing" "time" - "github.com/jiwu-moz/utls/testenv" + "github.com/mozilla-fakespot/utls/testenv" ) var rsaCertPEM = `-----BEGIN CERTIFICATE----- diff --git a/u_clienthello_json.go b/u_clienthello_json.go index bd8f686..e34f2c2 100644 --- a/u_clienthello_json.go +++ b/u_clienthello_json.go @@ -6,7 +6,7 @@ import ( "fmt" "os" - "github.com/jiwu-moz/utls/dicttls" + "github.com/mozilla-fakespot/utls/dicttls" ) var ErrUnknownExtension = errors.New("extension name is unknown to the dictionary") diff --git a/u_common.go b/u_common.go index 794d834..5a2582b 100644 --- a/u_common.go +++ b/u_common.go @@ -13,7 +13,7 @@ import ( "hash" "log" - "github.com/jiwu-moz/utls/internal/helper" + "github.com/mozilla-fakespot/utls/internal/helper" "golang.org/x/crypto/cryptobyte" ) diff --git a/u_ech.go b/u_ech.go index 01e9fa7..791c471 100644 --- a/u_ech.go +++ b/u_ech.go @@ -9,7 +9,7 @@ import ( "sync" "github.com/cloudflare/circl/hpke" - "github.com/jiwu-moz/utls/dicttls" + "github.com/mozilla-fakespot/utls/dicttls" "golang.org/x/crypto/cryptobyte" ) diff --git a/u_ech_test.go b/u_ech_test.go index b93886d..d410026 100644 --- a/u_ech_test.go +++ b/u_ech_test.go @@ -5,8 +5,8 @@ import ( "io" "testing" - tls "github.com/jiwu-moz/utls" - "github.com/jiwu-moz/utls/dicttls" + tls "github.com/mozilla-fakespot/utls" + "github.com/mozilla-fakespot/utls/dicttls" ) func TestGREASEECHWrite(t *testing.T) { diff --git a/u_fingerprinter_test.go b/u_fingerprinter_test.go index 4fef37f..fa7f422 100644 --- a/u_fingerprinter_test.go +++ b/u_fingerprinter_test.go @@ -160,8 +160,8 @@ func checkUTLSExtensionsEquality(t *testing.T, expected, actual TLSExtension) { } // Conn.vers is sometimes left to zero which is unacceptable to uTLS' SetTLSVers -// https://github.com/jiwu-moz/utls/blob/f7e7360167ed2903ef12898634512b66f8c3aad0/u_conn.go#L564-L566 -// https://github.com/jiwu-moz/utls/blob/f7e7360167ed2903ef12898634512b66f8c3aad0/conn.go#L945-L948 +// https://github.com/mozilla-fakespot/utls/blob/f7e7360167ed2903ef12898634512b66f8c3aad0/u_conn.go#L564-L566 +// https://github.com/mozilla-fakespot/utls/blob/f7e7360167ed2903ef12898634512b66f8c3aad0/conn.go#L945-L948 func createMinTLSVersion(vers uint16) uint16 { if vers == 0 { return VersionTLS10 diff --git a/u_parrots.go b/u_parrots.go index 84bd201..9894f0c 100644 --- a/u_parrots.go +++ b/u_parrots.go @@ -18,7 +18,7 @@ import ( "sort" "strconv" - "github.com/jiwu-moz/utls/dicttls" + "github.com/mozilla-fakespot/utls/dicttls" ) var ErrUnknownClientHelloID = errors.New("tls: unknown ClientHelloID") diff --git a/u_prng.go b/u_prng.go index 7f0500b..b81978c 100644 --- a/u_prng.go +++ b/u_prng.go @@ -3,7 +3,7 @@ * All rights reserved. * * Released under utls licence: - * https://github.com/jiwu-moz/utls/blob/master/LICENSE + * https://github.com/mozilla-fakespot/utls/blob/master/LICENSE */ // This code is a pared down version of: diff --git a/u_quic_transport_parameters.go b/u_quic_transport_parameters.go index 9f17fdc..10c1473 100644 --- a/u_quic_transport_parameters.go +++ b/u_quic_transport_parameters.go @@ -6,7 +6,7 @@ import ( "math" "math/big" - "github.com/jiwu-moz/utls/internal/quicvarint" + "github.com/mozilla-fakespot/utls/internal/quicvarint" ) const ( diff --git a/u_tls_extensions.go b/u_tls_extensions.go index 96615f9..3d4bcb6 100644 --- a/u_tls_extensions.go +++ b/u_tls_extensions.go @@ -11,7 +11,7 @@ import ( "io" "strings" - "github.com/jiwu-moz/utls/dicttls" + "github.com/mozilla-fakespot/utls/dicttls" "golang.org/x/crypto/cryptobyte" ) @@ -1352,7 +1352,7 @@ func (e *PSKKeyExchangeModesExtension) Write(b []byte) (int, error) { // RFC 8446, Section 4.2.9 // TODO: PSK Modes have their own form of GREASE-ing which is not currently implemented // the current functionality will NOT re-GREASE/re-randomize these values when using a fingerprinted spec - // https://github.com/jiwu-moz/utls/pull/58#discussion_r522354105 + // https://github.com/mozilla-fakespot/utls/pull/58#discussion_r522354105 // https://tools.ietf.org/html/draft-ietf-tls-grease-01#section-2 pskModes := []uint8{} if !readUint8LengthPrefixed(&extData, &pskModes) {