Rod Hynes 28476ee3c4 Remove old ChaCha20-Poly1305 cipher suites. 8 tahun lalu
..
cipherhw d9be40abd8 Use Go 1.8 RC "tls" package for its new ciphersuites 9 tahun lalu
testdata d9be40abd8 Use Go 1.8 RC "tls" package for its new ciphersuites 9 tahun lalu
README.md b3bbd1c49c Update tls README 9 tahun lalu
alert.go d9be40abd8 Use Go 1.8 RC "tls" package for its new ciphersuites 9 tahun lalu
cipher_suites.go 28476ee3c4 Remove old ChaCha20-Poly1305 cipher suites. 8 tahun lalu
common.go a41beabd78 Some gitmetalinter fixes 8 tahun lalu
conn.go 76ae06efe7 Implement client-side extended master secret 9 tahun lalu
conn_test.go d9be40abd8 Use Go 1.8 RC "tls" package for its new ciphersuites 9 tahun lalu
example_test.go ad279ef755 Make ClientHello extensions match modern Chrome 9 tahun lalu
generate_cert.go dd4dfe68c1 Fork go 1.7.3 crypto/tls 9 tahun lalu
handshake_client.go 28476ee3c4 Remove old ChaCha20-Poly1305 cipher suites. 8 tahun lalu
handshake_client_test.go d9be40abd8 Use Go 1.8 RC "tls" package for its new ciphersuites 9 tahun lalu
handshake_messages.go 5419c562d7 Fix: malformed non-EmulateChrome TLS ClientHello 8 tahun lalu
handshake_messages_test.go d9be40abd8 Use Go 1.8 RC "tls" package for its new ciphersuites 9 tahun lalu
handshake_server.go d9be40abd8 Use Go 1.8 RC "tls" package for its new ciphersuites 9 tahun lalu
handshake_server_test.go 28476ee3c4 Remove old ChaCha20-Poly1305 cipher suites. 8 tahun lalu
handshake_test.go d9be40abd8 Use Go 1.8 RC "tls" package for its new ciphersuites 9 tahun lalu
key_agreement.go 7a43f2896a Change tls fork to use internal crypto fork 8 tahun lalu
obfuscated.go a41beabd78 Some gitmetalinter fixes 8 tahun lalu
obfuscated_test.go 5419c562d7 Fix: malformed non-EmulateChrome TLS ClientHello 8 tahun lalu
prf.go 76ae06efe7 Implement client-side extended master secret 9 tahun lalu
prf_test.go dd4dfe68c1 Fork go 1.7.3 crypto/tls 9 tahun lalu
ticket.go d94e49ea7e Add session ticket padding 9 tahun lalu
tls.go f8148ca4e6 Add in latest Go 1.8 RC2 changes to "tls" package 9 tahun lalu
tls_test.go ad279ef755 Make ClientHello extensions match modern Chrome 9 tahun lalu

README.md

This is a fork of go 1.8 crypto/tls.

The files obfuscated.go and obfuscated_test.go implement obfuscated session tickets, a network obfuscation protocol based on TLS. The obfuscated session tickets protocol is implemented as an optional mode enabled through the Config. The implementation requires access to crypto.tls internals.

The EmulateChrome feature configures the TLS ClientHello to match the ClientHello message sent by a modern Chrome browser.

All customizations are tagged with // [Psiphon] comments.