xor.go 207 B

1234567
  1. package kcp
  2. // xorfwd performs XOR forwards in words, x[i] ^= x[i-4], i from 0 to len
  3. func xorfwd(x []byte)
  4. // xorbkd performs XOR backwords in words, x[i] ^= x[i-4], i from len to 0
  5. func xorbkd(x []byte)