mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 03:57:36 +03:00
Bump min Go version to 1.9, gofmt
This commit is contained in:
parent
112951f6d7
commit
8dcadf2736
3 changed files with 7 additions and 6 deletions
|
@ -1,8 +1,8 @@
|
|||
language: go
|
||||
|
||||
go:
|
||||
- 1.8.x
|
||||
- 1.9
|
||||
- "1.9"
|
||||
- "1.10.x"
|
||||
|
||||
sudo: required
|
||||
dist: trusty
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
[](https://godoc.org/github.com/refraction-networking/utls#UConn)
|
||||
---
|
||||
uTLS is a fork of "crypto/tls", which provides ClientHello fingerprinting resistance, low-level access to handshake, fake session tickets and some other features. Handshake is still performed by "crypto/tls", this library merely changes ClientHello part of it and provides low-level access.
|
||||
Golang 1.9+ is required.
|
||||
If you have any questions, bug reports or contributions, you are welcome to publish those on GitHub. If you want to do so in private, you can contact one of developers personally via sergey.frolov@colorado.edu
|
||||
# Features
|
||||
## Low-level access to handshake
|
||||
|
|
|
@ -7,13 +7,13 @@ package tls
|
|||
import (
|
||||
"crypto/rand"
|
||||
"crypto/sha256"
|
||||
"encoding/binary"
|
||||
"errors"
|
||||
"io"
|
||||
"math/big"
|
||||
"sort"
|
||||
"strconv"
|
||||
"time"
|
||||
"encoding/binary"
|
||||
)
|
||||
|
||||
func initParrots() {
|
||||
|
@ -187,10 +187,10 @@ func (uconn *UConn) ApplyPreset(p *ClientHelloSpec) error {
|
|||
return errors.New("tls: short read from Rand: " + err.Error())
|
||||
}
|
||||
for i := range uconn.greaseSeed {
|
||||
uconn.greaseSeed[i] = binary.LittleEndian.Uint16(grease_bytes[2*i:2*i +2])
|
||||
uconn.greaseSeed[i] = binary.LittleEndian.Uint16(grease_bytes[2*i : 2*i+2])
|
||||
}
|
||||
if (uconn.greaseSeed[ssl_grease_extension1] == uconn.greaseSeed[ssl_grease_extension2]) {
|
||||
uconn.greaseSeed[ssl_grease_extension2] ^= 0x1010;
|
||||
if uconn.greaseSeed[ssl_grease_extension1] == uconn.greaseSeed[ssl_grease_extension2] {
|
||||
uconn.greaseSeed[ssl_grease_extension2] ^= 0x1010
|
||||
}
|
||||
|
||||
hello.CipherSuites = p.CipherSuites
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue