Function deinterleave

  • Deinterleaves a sequence of bytes. This is the reverse of interleave.
    Used when decrypting packets and data files.

    Example

    {0, 1, 2, 3, 4, 5} → {0, 2, 4, 5, 3, 1}
    

    Remarks

    This is an in-place operation.

    Parameters

    • data: Uint8Array

      the data to deinterleave

    Returns void

Generated using TypeDoc