From 4ba4a063ca36021e0be333a0a488355100d44a4e Mon Sep 17 00:00:00 2001 From: Klaus Post Date: Thu, 2 May 2024 14:17:10 +0200 Subject: [PATCH] Fix doc --- cipher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cipher.go b/cipher.go index 798a923..ffe4161 100644 --- a/cipher.go +++ b/cipher.go @@ -25,7 +25,7 @@ func Cipher(payload []byte, mask [4]byte, offset int) { // Count number of bytes will processed one by one from the beginning of payload. ln := remain[mpos] // Count number of bytes will processed one by one from the end of payload. - // This is done to process payload by 8 bytes in each iteration of main loop. + // This is done to process payload by 16 bytes in each iteration of main loop. rn := (n - ln) % 16 for i := 0; i < ln; i++ {