void swap()

in rc4.c [3:7]


void swap(uint8_t *a, uint8_t *b) {
  uint8_t temp = *a;
  *a = *b;
  *b = temp;
}