encryption: updated RC4 Godoc comment

This commit is contained in:
Jonathan Barrow 2024-01-15 15:08:17 -05:00
parent a63ca441a9
commit a8eb72b445
No known key found for this signature in database
GPG key ID: E86E9FE9049C741F

View file

@ -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