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.
multiple = 3{10, 21, 27} → {10, 27, 21}
This is an in-place operation.
the data to swap bytes in
the multiple value
Generated using TypeDoc
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.
Example
Remarks
This is an in-place operation.