]> Cypherpunks repositories - gostls13.git/commitdiff
crypto/tls: fix link to more info about channel bindings
authorМаксим Федосеев <max.faceless.frei@gmail.com>
Mon, 30 Jan 2017 12:11:01 +0000 (17:11 +0500)
committerAdam Langley <agl@golang.org>
Wed, 8 Feb 2017 19:57:15 +0000 (19:57 +0000)
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>
src/crypto/tls/common.go

index bdbedc689beed3bede6a6402eeb5948920934835..f0e30dcc5db1811c8aedd0ef2de81ab147c47a56 100644 (file)
@@ -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
 }