From a8eb72b445a62c9efc1e7fc6b1ad3d15cbd267ed Mon Sep 17 00:00:00 2001 From: Jonathan Barrow Date: Mon, 15 Jan 2024 15:08:17 -0500 Subject: [PATCH] encryption: updated RC4 Godoc comment --- encryption/rc4.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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