summaryrefslogtreecommitdiff
path: root/libgo/go/crypto/rc4/rc4.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/crypto/rc4/rc4.go')
-rw-r--r--libgo/go/crypto/rc4/rc4.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgo/go/crypto/rc4/rc4.go b/libgo/go/crypto/rc4/rc4.go
index bd04aee6955..772af0e7e0d 100644
--- a/libgo/go/crypto/rc4/rc4.go
+++ b/libgo/go/crypto/rc4/rc4.go
@@ -4,11 +4,11 @@
// Package rc4 implements RC4 encryption, as defined in Bruce Schneier's
// Applied Cryptography.
+//
+// RC4 is cryptographically broken and should not be used for secure
+// applications.
package rc4
-// BUG(agl): RC4 is in common use but has design weaknesses that make
-// it a poor choice for new protocols.
-
import "strconv"
// A Cipher is an instance of RC4 using a particular key.