Flips the most significant bits of each byte in a sequence of bytes. (Values 0 and 128 are not flipped.) Used when encrypting and decrypting packets.
0
128
{0, 1, 127, 128, 129, 254, 255} → {0, 129, 255, 128, 1, 126, 127}
This is an in-place operation.
the data to flip most significant bits on
Generated using TypeDoc
Flips the most significant bits of each byte in a sequence of bytes. (Values
0
and128
are not flipped.)Used when encrypting and decrypting packets.
Example
Remarks
This is an in-place operation.