aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2016-11-29 20:41:29 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2016-11-29 21:38:45 +0000
commit4822e76ba547c158bb98419c6eb514c6ee198ee0 (patch)
tree2223cdef0185f9a46b78b989c82b3e31b3cb809d
parent00047248223a68882a120e210014b66577172218 (diff)
downloadgo-4822e76ba547c158bb98419c6eb514c6ee198ee0.tar.gz
go-4822e76ba547c158bb98419c6eb514c6ee198ee0.zip
crypto/tls: update CBC Lucky13 warning a bit
Some countermeasures were implemented in https://golang.org/cl/18130 Updates #13385 Change-Id: I723e1e3be0fa6d13767b65b145d90c89e92b2774 Reviewed-on: https://go-review.googlesource.com/33665 Reviewed-by: Adam Langley <agl@golang.org>
-rw-r--r--src/crypto/tls/tls.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/tls/tls.go b/src/crypto/tls/tls.go
index fc86428851..f2e5aea2bc 100644
--- a/src/crypto/tls/tls.go
+++ b/src/crypto/tls/tls.go
@@ -5,7 +5,7 @@
// Package tls partially implements TLS 1.2, as specified in RFC 5246.
package tls
-// BUG(agl): The crypto/tls package does not implement countermeasures
+// BUG(agl): The crypto/tls package only implements some countermeasures
// against Lucky13 attacks on CBC-mode encryption. See
// http://www.isg.rhul.ac.uk/tls/TLStiming.pdf and
// https://www.imperialviolet.org/2013/02/04/luckythirteen.html.