Searched refs:pcrc_32_tab (Results 1 - 1 of 1) sorted by relevance

/openwrt/tools/wrt350nv2-builder/src/
H A Dcrypt.h30 #define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8))
35 static int decrypt_byte(unsigned long* pkeys, const unsigned long* pcrc_32_tab) argument
48 static int update_keys(unsigned long* pkeys,const unsigned long* pcrc_32_tab,int c) argument
65 static void init_keys(const char* passwd,unsigned long* pkeys,const unsigned long* pcrc_32_tab) argument
71 update_keys(pkeys,pcrc_32_tab,(int)*passwd);
76 #define zdecode(pkeys,pcrc_32_tab,c) \
77 (update_keys(pkeys,pcrc_32_tab,c ^= decrypt_byte(pkeys,pcrc_32_tab)))
79 #define zencode(pkeys,pcrc_32_tab,c,t) \
80 (t=decrypt_byte(pkeys,pcrc_32_tab), update_key
95 const unsigned long* pcrc_32_tab; variable
[all...]

Completed in 25 milliseconds