Skip to content

Commit

Permalink
Fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
klauspost committed May 2, 2024
1 parent ed29455 commit 4ba4a06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cipher.go
Original file line number Diff line number Diff line change
Expand Up @@ -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++ {
Expand Down

0 comments on commit 4ba4a06

Please sign in to comment.