From bb50948935f757079dd8f72b0ff3c3eccc75bc3f Mon Sep 17 00:00:00 2001 From: CPunch Date: Sat, 25 Nov 2023 23:15:47 -0600 Subject: [PATCH] minor styling fix --- internal/protocol/encrypt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/protocol/encrypt.go b/internal/protocol/encrypt.go index 8a5d611..8979e0c 100644 --- a/internal/protocol/encrypt.go +++ b/internal/protocol/encrypt.go @@ -49,7 +49,7 @@ func DecryptData(buff, key []byte) { xorData(buff, key, size) } -func CreateNewKey(uTime uint64, iv1, iv2 uint64) []byte { +func CreateNewKey(uTime, iv1, iv2 uint64) []byte { num := iv1 + 1 num2 := iv2 + 1