Swaps the order of contiguous bytes in a sequence of bytes that are divisible by a given multiple value. Used when encrypting and decrypting packets and data files.
the data to swap bytes in
the multiple value
multiple = 3{10, 21, 27} → {10, 27, 21} Copy
multiple = 3{10, 21, 27} → {10, 27, 21}
This is an in-place operation.
Swaps the order of contiguous bytes in a sequence of bytes that are divisible by a given multiple value.
Used when encrypting and decrypting packets and data files.