crashtest-r0ket/firmware/basic/xxtea.h

9 lines
167 B
C
Raw Normal View History

2011-07-13 23:27:54 +00:00
#ifndef _XXTEA_H_
#define _XXTEA_H_
void xxtea_encode(uint32_t *v, int n, uint32_t const k[4]);
void xxtea_decode(uint32_t *v, int n, uint32_t const k[4]);
#endif