From c9d95e7aac2e027aec0c74b7720b78999b95360b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B0=D0=BA=D1=81=D0=B8=D0=BC=20=D0=A4=D0=B5=D0=B4?= =?UTF-8?q?=D0=BE=D1=81=D0=B5=D0=B5=D0=B2?= Date: Mon, 30 Jan 2017 17:11:01 +0500 Subject: [PATCH] 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 Reviewed-by: Adam Langley --- common.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common.go b/common.go index bdbedc6..f0e30dc 100644 --- a/common.go +++ b/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 }