Searched defs:pkeys (Results 1 - 1 of 1) sorted by relevance

/vbox/src/libs/zlib-1.2.6/contrib/minizip/
H A Dcrypt.h35 static int decrypt_byte(unsigned long* pkeys, const unsigned long* pcrc_32_tab) argument
41 temp = ((unsigned)(*(pkeys+2)) & 0xffff) | 2;
48 static int update_keys(unsigned long* pkeys,const unsigned long* pcrc_32_tab,int c) argument
50 (*(pkeys+0)) = CRC32((*(pkeys+0)), c);
51 (*(pkeys+1)) += (*(pkeys+0)) & 0xff;
52 (*(pkeys+1)) = (*(pkeys+1)) * 134775813L + 1;
54 register int keyshift = (int)((*(pkeys
65 init_keys(const char* passwd,unsigned long* pkeys,const unsigned long* pcrc_32_tab) argument
90 crypthead(const char* passwd, unsigned char* buf, int bufSize, unsigned long* pkeys, const unsigned long* pcrc_32_tab, unsigned long crcForCrypting) argument
[all...]

Completed in 32 milliseconds