diff --git a/encryption/rc4.go b/encryption/rc4.go index c4b16b9..a59f781 100644 --- a/encryption/rc4.go +++ b/encryption/rc4.go @@ -4,7 +4,7 @@ import ( "crypto/rc4" ) -// RC4 does no encryption. Payloads are returned as-is +// RC4 encrypts data with RC4 type RC4 struct { key []byte cipher *rc4.Cipher