11 lines
288 B
C
11 lines
288 B
C
#ifndef _XXTEA_H_
|
|
#define _XXTEA_H_
|
|
#include <stdint.h>
|
|
|
|
void xxtea_cbcmac(uint32_t mac[4], uint32_t *data, uint32_t len, uint32_t const key[4]);
|
|
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
|
|
|