void xxtea_decode(uint32_t *restrict v, unsigned n, uint32_t const key[restrict 4])
Decode a array of data with the XXTEA algorithm Decoding is done in place.
Definition: xxtea.c:65
void xxtea_encode(uint32_t *restrict v, unsigned n, uint32_t const key[restrict 4])
Encode a array of data with the XXTEA algorithm Encoding is done in place.
Definition: xxtea.c:41