]> Cypherpunks repositories - gostls13.git/commitdiff
crypto/tls: Update references to draft-ietf-tls-downgrade-scsv-00.
authorDavid Benjamin <davidben@google.com>
Mon, 15 Feb 2016 16:56:18 +0000 (11:56 -0500)
committerBrad Fitzpatrick <bradfitz@golang.org>
Fri, 25 Mar 2016 22:10:37 +0000 (22:10 +0000)
It's RFC 7507 now.

Change-Id: Iccd6c65f9d4b1f4d17ee068dee4576a512ba8405
Reviewed-on: https://go-review.googlesource.com/21154
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/crypto/tls/cipher_suites.go
src/crypto/tls/handshake_server.go

index d4d75cbff89165c689fdcbe535805914835723ed..e69f5f966e34578534ab1328014cfea872d6cf34 100644 (file)
@@ -286,6 +286,6 @@ const (
 
        // TLS_FALLBACK_SCSV isn't a standard cipher suite but an indicator
        // that the client is doing version fallback. See
-       // https://tools.ietf.org/html/draft-ietf-tls-downgrade-scsv-00.
+       // https://tools.ietf.org/html/rfc7507.
        TLS_FALLBACK_SCSV uint16 = 0x5600
 )
index d910730794fc26a31fca94fa03dc098da9cac979..a6cafd3d24962b071a977181eee2a8c615e9319e 100644 (file)
@@ -246,7 +246,7 @@ Curves:
                return false, errors.New("tls: no cipher suite supported by both client and server")
        }
 
-       // See https://tools.ietf.org/html/draft-ietf-tls-downgrade-scsv-00.
+       // See https://tools.ietf.org/html/rfc7507.
        for _, id := range hs.clientHello.cipherSuites {
                if id == TLS_FALLBACK_SCSV {
                        // The client is doing a fallback connection.