tea.h

Go to the documentation of this file.
00001 
00042 #ifndef ALGO_TEA_H
00043 #define ALGO_TEA_H
00044 
00045 #include <cfg/compiler.h>
00046 
00047 #define TEA_KEY_LEN     16  
00048 #define TEA_BLOCK_LEN   8   
00049 
00050 #define DELTA   0x9E3779B9  
00051 #define ROUNDS  32      
00052 
00053 void tea_enc(void *_v, void *_k);
00054 void tea_dec(void *_v, void *_k);
00055 
00056 #endif /* ALGO_TEA_H */
00057