Parcourir la source

Update tls README

Rod Hynes il y a 9 ans
Parent
commit
b3bbd1c49c
1 fichiers modifiés avec 5 ajouts et 3 suppressions
  1. 5 3
      psiphon/common/tls/README.md

+ 5 - 3
psiphon/common/tls/README.md

@@ -1,5 +1,7 @@
-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.
+This is a fork of go 1.8 `crypto/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 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.
 
 
-Apart from this optional mode, this is a stock `crypto/tls`.
+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.