From 189ee23788161dc9ca7359b0e05033f43c1c3748 Mon Sep 17 00:00:00 2001 From: Pagran <67878280+pagran@users.noreply.github.com> Date: Wed, 12 Aug 2020 03:49:33 +0300 Subject: [PATCH] Fix encryptChunks --- internal/literals/split.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/literals/split.go b/internal/literals/split.go index 1417c04..127b348 100644 --- a/internal/literals/split.go +++ b/internal/literals/split.go @@ -59,8 +59,8 @@ func shuffleStmts(stmts ...ast.Stmt) []ast.Stmt { func encryptChunks(chunks [][]byte, op token.Token, key int) { byteOffset := 0 for _, chunk := range chunks { - for i := range chunk { - chunk[i] = evalOperator(op, chunk[i], byte(key^byteOffset)) + for i, b := range chunk { + chunk[i] = evalOperator(op, b, byte(key^byteOffset)) byteOffset++ } }