aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorМаксим Федосеев <max.faceless.frei@gmail.com>2017-01-30 17:11:01 +0500
committerAdam Langley <agl@golang.org>2017-02-08 19:57:15 +0000
commit7bd968fbfdfd943d8bfc3f6f48b47c5fe990f9ba (patch)
tree7ebfc24cbb8a648986339ee7e77a623ace6f7501 /src
parente2390ec18352f25066074331449cbcb74957068e (diff)
downloadgo-7bd968fbfdfd943d8bfc3f6f48b47c5fe990f9ba.tar.xz
crypto/tls: fix link to more info about channel bindings
Link in the description of TLSUnique field of ConnectionState struct leads to an article that is no longer available, so this commit replaces it with link to a copy of the very same article on another site. Fixes #18842. Change-Id: I8f8d298c4774dc0fbbad5042db0684bb3220aee8 Reviewed-on: https://go-review.googlesource.com/36052 Reviewed-by: Filippo Valsorda <hi@filippo.io> Reviewed-by: Adam Langley <agl@golang.org>
Diffstat (limited to 'src')
-rw-r--r--src/crypto/tls/common.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crypto/tls/common.go b/src/crypto/tls/common.go
index bdbedc689b..f0e30dcc5d 100644
--- a/src/crypto/tls/common.go
+++ b/src/crypto/tls/common.go
@@ -174,9 +174,9 @@ type ConnectionState struct {
// TLSUnique contains the "tls-unique" channel binding value (see RFC
// 5929, section 3). For resumed sessions this value will be nil
// because resumption does not include enough context (see
- // https://secure-resumption.com/#channelbindings). This will change in
- // future versions of Go once the TLS master-secret fix has been
- // standardized and implemented.
+ // https://mitls.org/pages/attacks/3SHAKE#channelbindings). This will
+ // change in future versions of Go once the TLS master-secret fix has
+ // been standardized and implemented.
TLSUnique []byte
}