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