Deinterleaves a sequence of bytes. This is the reverse of interleave. Used when decrypting packets and data files.
interleave
{0, 1, 2, 3, 4, 5} → {0, 2, 4, 5, 3, 1}
This is an in-place operation.
the data to deinterleave
Generated using TypeDoc
Deinterleaves a sequence of bytes. This is the reverse of
interleave
.Used when decrypting packets and data files.
Example
Remarks
This is an in-place operation.