Go to the documentation of this file.
27 #ifndef POLARSSL_XTEA_H
28 #define POLARSSL_XTEA_H
30 #if !defined(POLARSSL_CONFIG_FILE)
33 #include POLARSSL_CONFIG_FILE
38 #if defined(_MSC_VER) && !defined(EFIX64) && !defined(EFI32)
40 typedef UINT32 uint32_t;
45 #define XTEA_ENCRYPT 1
46 #define XTEA_DECRYPT 0
48 #define POLARSSL_ERR_XTEA_INVALID_INPUT_LENGTH -0x0028
50 #if !defined(POLARSSL_XTEA_ALT)
101 const unsigned char input[8],
102 unsigned char output[8] );
104 #if defined(POLARSSL_CIPHER_MODE_CBC)
122 const unsigned char *input,
123 unsigned char *output);
131 #include "xtea_alt.h"