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