Rod Hynes 67a17982dd Add TLS session ticket obfuscation protocol hace 9 años
..
testdata dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
README.md 67a17982dd Add TLS session ticket obfuscation protocol hace 9 años
alert.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
cipher_suites.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
common.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
conn.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
conn_test.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
example_test.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
generate_cert.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
handshake_client.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
handshake_client_test.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
handshake_messages.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
handshake_messages_test.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
handshake_server.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
handshake_server_test.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
handshake_test.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
key_agreement.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
obfuscated.go 67a17982dd Add TLS session ticket obfuscation protocol hace 9 años
obfuscated_test.go 67a17982dd Add TLS session ticket obfuscation protocol hace 9 años
prf.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
prf_test.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
ticket.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
tls.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años
tls_test.go dd4dfe68c1 Fork go 1.7.3 crypto/tls hace 9 años

README.md

This is a fork of go 1.7.3 crypto/tls. Changes are almost entirely contained in two new files, obfuscated.go and obfuscated_test.go, which 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.

Apart from this optional mode, this is a stock crypto/tls.