From: Brad Fitzpatrick Date: Tue, 12 Feb 2019 18:33:24 +0000 (+0000) Subject: doc/go1.12: soften, expand crypto/rc4 assembly removal text X-Git-Tag: go1.13beta1~1477 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c75ee696c341cef94b00409b3692f3df82af1c71;p=gostls13.git doc/go1.12: soften, expand crypto/rc4 assembly removal text Change-Id: I46fa43f6c5ac49386f4622e1363d8976f49c0894 Reviewed-on: https://go-review.googlesource.com/c/162019 Reviewed-by: Andrew Bonventre Reviewed-by: Ian Lance Taylor --- diff --git a/doc/go1.12.html b/doc/go1.12.html index 3b086e7001..75315d1b52 100644 --- a/doc/go1.12.html +++ b/doc/go1.12.html @@ -493,8 +493,11 @@ for {
crypto/rc4

- This release removes the optimized assembly implementations. RC4 is insecure - and should only be used for compatibility with legacy systems. + This release removes the assembly implementations, leaving only + the pure Go version. The Go compiler generates code that is + either slightly better or slightly worse, depending on the exact + CPU. RC4 is insecure and should only be used for compatibility + with legacy systems.