switching module names for proper import

This commit is contained in:
Jian Wu 2025-01-21 17:57:54 -05:00
parent 707b70b5d9
commit 1fe94aad7e
No known key found for this signature in database
GPG key ID: 5067342FD19B4937
17 changed files with 21 additions and 21 deletions

View file

@ -19,7 +19,7 @@ import (
"hash" "hash"
"runtime" "runtime"
"github.com/jiwu-moz/utls/internal/boring" "github.com/mozilla-fakespot/utls/internal/boring"
"golang.org/x/sys/cpu" "golang.org/x/sys/cpu"
"golang.org/x/crypto/chacha20poly1305" "golang.org/x/crypto/chacha20poly1305"

View file

@ -12,7 +12,7 @@ import (
"os" "os"
"time" "time"
tls "github.com/jiwu-moz/utls" tls "github.com/mozilla-fakespot/utls"
"golang.org/x/net/http2" "golang.org/x/net/http2"
) )

View file

@ -10,7 +10,7 @@ import (
"net/url" "net/url"
"time" "time"
tls "github.com/jiwu-moz/utls" tls "github.com/mozilla-fakespot/utls"
"golang.org/x/net/http2" "golang.org/x/net/http2"
) )

View file

@ -6,7 +6,7 @@ import (
"strings" "strings"
"time" "time"
tls "github.com/jiwu-moz/utls" tls "github.com/mozilla-fakespot/utls"
) )
type ClientSessionCache struct { type ClientSessionCache struct {

4
go.mod
View file

@ -1,5 +1,5 @@
//module github.com/jiwu-moz/utls //module github.com/mozilla-fakespot/utls
module github.com/jiwu-moz/utls module github.com/mozilla-fakespot/utls
go 1.22.5 go 1.22.5

View file

@ -9,7 +9,7 @@ import (
"fmt" "fmt"
"io" "io"
"github.com/jiwu-moz/utls/internal/quicvarint/protocol" "github.com/mozilla-fakespot/utls/internal/quicvarint/protocol"
) )
// taken from the QUIC draft // taken from the QUIC draft

View file

@ -11,7 +11,7 @@ import (
"path/filepath" "path/filepath"
"testing" "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. // Tests that the linker is able to remove references to the Client or Server if unused.

View file

@ -22,7 +22,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/jiwu-moz/utls/testenv" "github.com/mozilla-fakespot/utls/testenv"
) )
var rsaCertPEM = `-----BEGIN CERTIFICATE----- var rsaCertPEM = `-----BEGIN CERTIFICATE-----

View file

@ -6,7 +6,7 @@ import (
"fmt" "fmt"
"os" "os"
"github.com/jiwu-moz/utls/dicttls" "github.com/mozilla-fakespot/utls/dicttls"
) )
var ErrUnknownExtension = errors.New("extension name is unknown to the dictionary") var ErrUnknownExtension = errors.New("extension name is unknown to the dictionary")

View file

@ -13,7 +13,7 @@ import (
"hash" "hash"
"log" "log"
"github.com/jiwu-moz/utls/internal/helper" "github.com/mozilla-fakespot/utls/internal/helper"
"golang.org/x/crypto/cryptobyte" "golang.org/x/crypto/cryptobyte"
) )

View file

@ -9,7 +9,7 @@ import (
"sync" "sync"
"github.com/cloudflare/circl/hpke" "github.com/cloudflare/circl/hpke"
"github.com/jiwu-moz/utls/dicttls" "github.com/mozilla-fakespot/utls/dicttls"
"golang.org/x/crypto/cryptobyte" "golang.org/x/crypto/cryptobyte"
) )

View file

@ -5,8 +5,8 @@ import (
"io" "io"
"testing" "testing"
tls "github.com/jiwu-moz/utls" tls "github.com/mozilla-fakespot/utls"
"github.com/jiwu-moz/utls/dicttls" "github.com/mozilla-fakespot/utls/dicttls"
) )
func TestGREASEECHWrite(t *testing.T) { func TestGREASEECHWrite(t *testing.T) {

View file

@ -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 // 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/mozilla-fakespot/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/conn.go#L945-L948
func createMinTLSVersion(vers uint16) uint16 { func createMinTLSVersion(vers uint16) uint16 {
if vers == 0 { if vers == 0 {
return VersionTLS10 return VersionTLS10

View file

@ -18,7 +18,7 @@ import (
"sort" "sort"
"strconv" "strconv"
"github.com/jiwu-moz/utls/dicttls" "github.com/mozilla-fakespot/utls/dicttls"
) )
var ErrUnknownClientHelloID = errors.New("tls: unknown ClientHelloID") var ErrUnknownClientHelloID = errors.New("tls: unknown ClientHelloID")

View file

@ -3,7 +3,7 @@
* All rights reserved. * All rights reserved.
* *
* Released under utls licence: * 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: // This code is a pared down version of:

View file

@ -6,7 +6,7 @@ import (
"math" "math"
"math/big" "math/big"
"github.com/jiwu-moz/utls/internal/quicvarint" "github.com/mozilla-fakespot/utls/internal/quicvarint"
) )
const ( const (

View file

@ -11,7 +11,7 @@ import (
"io" "io"
"strings" "strings"
"github.com/jiwu-moz/utls/dicttls" "github.com/mozilla-fakespot/utls/dicttls"
"golang.org/x/crypto/cryptobyte" "golang.org/x/crypto/cryptobyte"
) )
@ -1352,7 +1352,7 @@ func (e *PSKKeyExchangeModesExtension) Write(b []byte) (int, error) {
// RFC 8446, Section 4.2.9 // RFC 8446, Section 4.2.9
// TODO: PSK Modes have their own form of GREASE-ing which is not currently implemented // 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 // 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 // https://tools.ietf.org/html/draft-ietf-tls-grease-01#section-2
pskModes := []uint8{} pskModes := []uint8{}
if !readUint8LengthPrefixed(&extData, &pskModes) { if !readUint8LengthPrefixed(&extData, &pskModes) {