crashtest-r0ket/firmware/basic/xxtea.h
2011-07-17 20:34:59 +02:00

8 lines
179 B
C

#ifndef _XXTEA_H_
#define _XXTEA_H_
void xxtea_encode_words(uint32_t *v, int n, uint32_t const k[4]);
void xxtea_decode_words(uint32_t *v, int n, uint32_t const k[4]);
#endif