Bump min Go version to 1.9, gofmt

This commit is contained in:
Sergey Frolov 2018-06-21 12:10:06 -04:00 committed by sergeyfrolov
parent 112951f6d7
commit 8dcadf2736
3 changed files with 7 additions and 6 deletions

View file

@ -1,8 +1,8 @@
language: go
go:
- 1.8.x
- 1.9
- "1.9"
- "1.10.x"
sudo: required
dist: trusty

View file

@ -3,6 +3,7 @@
[![godoc](https://img.shields.io/badge/godoc-reference-blue.svg)](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

View file

@ -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