mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
adjusted imports and module for replaceable fork
This commit is contained in:
parent
f83e29e839
commit
707b70b5d9
17 changed files with 21 additions and 20 deletions
|
@ -19,7 +19,7 @@ import (
|
|||
"hash"
|
||||
"runtime"
|
||||
|
||||
"github.com/refraction-networking/utls/internal/boring"
|
||||
"github.com/jiwu-moz/utls/internal/boring"
|
||||
"golang.org/x/sys/cpu"
|
||||
|
||||
"golang.org/x/crypto/chacha20poly1305"
|
||||
|
|
|
@ -12,7 +12,7 @@ import (
|
|||
"os"
|
||||
"time"
|
||||
|
||||
tls "github.com/refraction-networking/utls"
|
||||
tls "github.com/jiwu-moz/utls"
|
||||
"golang.org/x/net/http2"
|
||||
)
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ import (
|
|||
"net/url"
|
||||
"time"
|
||||
|
||||
tls "github.com/refraction-networking/utls"
|
||||
tls "github.com/jiwu-moz/utls"
|
||||
"golang.org/x/net/http2"
|
||||
)
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"strings"
|
||||
"time"
|
||||
|
||||
tls "github.com/refraction-networking/utls"
|
||||
tls "github.com/jiwu-moz/utls"
|
||||
)
|
||||
|
||||
type ClientSessionCache struct {
|
||||
|
|
3
go.mod
3
go.mod
|
@ -1,4 +1,5 @@
|
|||
module github.com/refraction-networking/utls
|
||||
//module github.com/jiwu-moz/utls
|
||||
module github.com/jiwu-moz/utls
|
||||
|
||||
go 1.22.5
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ import (
|
|||
"fmt"
|
||||
"io"
|
||||
|
||||
"github.com/refraction-networking/utls/internal/quicvarint/protocol"
|
||||
"github.com/jiwu-moz/utls/internal/quicvarint/protocol"
|
||||
)
|
||||
|
||||
// taken from the QUIC draft
|
||||
|
|
|
@ -11,7 +11,7 @@ import (
|
|||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
"github.com/refraction-networking/utls/testenv"
|
||||
"github.com/jiwu-moz/utls/testenv"
|
||||
)
|
||||
|
||||
// Tests that the linker is able to remove references to the Client or Server if unused.
|
||||
|
|
|
@ -22,7 +22,7 @@ import (
|
|||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/refraction-networking/utls/testenv"
|
||||
"github.com/jiwu-moz/utls/testenv"
|
||||
)
|
||||
|
||||
var rsaCertPEM = `-----BEGIN CERTIFICATE-----
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/refraction-networking/utls/dicttls"
|
||||
"github.com/jiwu-moz/utls/dicttls"
|
||||
)
|
||||
|
||||
var ErrUnknownExtension = errors.New("extension name is unknown to the dictionary")
|
||||
|
|
|
@ -13,7 +13,7 @@ import (
|
|||
"hash"
|
||||
"log"
|
||||
|
||||
"github.com/refraction-networking/utls/internal/helper"
|
||||
"github.com/jiwu-moz/utls/internal/helper"
|
||||
"golang.org/x/crypto/cryptobyte"
|
||||
)
|
||||
|
||||
|
|
2
u_ech.go
2
u_ech.go
|
@ -9,7 +9,7 @@ import (
|
|||
"sync"
|
||||
|
||||
"github.com/cloudflare/circl/hpke"
|
||||
"github.com/refraction-networking/utls/dicttls"
|
||||
"github.com/jiwu-moz/utls/dicttls"
|
||||
"golang.org/x/crypto/cryptobyte"
|
||||
)
|
||||
|
||||
|
|
|
@ -5,8 +5,8 @@ import (
|
|||
"io"
|
||||
"testing"
|
||||
|
||||
tls "github.com/refraction-networking/utls"
|
||||
"github.com/refraction-networking/utls/dicttls"
|
||||
tls "github.com/jiwu-moz/utls"
|
||||
"github.com/jiwu-moz/utls/dicttls"
|
||||
)
|
||||
|
||||
func TestGREASEECHWrite(t *testing.T) {
|
||||
|
|
|
@ -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/refraction-networking/utls/blob/f7e7360167ed2903ef12898634512b66f8c3aad0/u_conn.go#L564-L566
|
||||
// https://github.com/refraction-networking/utls/blob/f7e7360167ed2903ef12898634512b66f8c3aad0/conn.go#L945-L948
|
||||
// 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
|
||||
func createMinTLSVersion(vers uint16) uint16 {
|
||||
if vers == 0 {
|
||||
return VersionTLS10
|
||||
|
|
|
@ -18,7 +18,7 @@ import (
|
|||
"sort"
|
||||
"strconv"
|
||||
|
||||
"github.com/refraction-networking/utls/dicttls"
|
||||
"github.com/jiwu-moz/utls/dicttls"
|
||||
)
|
||||
|
||||
var ErrUnknownClientHelloID = errors.New("tls: unknown ClientHelloID")
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* All rights reserved.
|
||||
*
|
||||
* Released under utls licence:
|
||||
* https://github.com/refraction-networking/utls/blob/master/LICENSE
|
||||
* https://github.com/jiwu-moz/utls/blob/master/LICENSE
|
||||
*/
|
||||
|
||||
// This code is a pared down version of:
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"math"
|
||||
"math/big"
|
||||
|
||||
"github.com/refraction-networking/utls/internal/quicvarint"
|
||||
"github.com/jiwu-moz/utls/internal/quicvarint"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -11,7 +11,7 @@ import (
|
|||
"io"
|
||||
"strings"
|
||||
|
||||
"github.com/refraction-networking/utls/dicttls"
|
||||
"github.com/jiwu-moz/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/refraction-networking/utls/pull/58#discussion_r522354105
|
||||
// https://github.com/jiwu-moz/utls/pull/58#discussion_r522354105
|
||||
// https://tools.ietf.org/html/draft-ietf-tls-grease-01#section-2
|
||||
pskModes := []uint8{}
|
||||
if !readUint8LengthPrefixed(&extData, &pskModes) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue