Go to the documentation of this file.
27 #ifndef POLARSSL_XTEA_H
28 #define POLARSSL_XTEA_H
36 typedef UINT32 uint32_t;
41 #define XTEA_ENCRYPT 1
42 #define XTEA_DECRYPT 0
44 #define POLARSSL_ERR_XTEA_INVALID_INPUT_LENGTH -0x0028
46 #if !defined(POLARSSL_XTEA_ALT)
83 const unsigned char input[8],
84 unsigned char output[8] );
86 #if defined(POLARSSL_CIPHER_MODE_CBC)
104 const unsigned char *input,
105 unsigned char *output);
113 #include "xtea_alt.h"