You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
560 B
16 lines
560 B
//HEADER_GOES_HERE |
|
#ifndef __ENCRYPT_H__ |
|
#define __ENCRYPT_H__ |
|
|
|
extern DWORD hashtable[1280]; |
|
|
|
void Decrypt(void *block, DWORD size, DWORD key); |
|
void Encrypt(void *block, DWORD size, DWORD key); |
|
DWORD Hash(const char *s, int type); |
|
void InitHash(); |
|
int PkwareCompress(void *buf, int size); |
|
unsigned int __cdecl PkwareBufferRead(char *buf, unsigned int *size, void *param); |
|
void __cdecl PkwareBufferWrite(char *buf, unsigned int *size, void *param); |
|
void PkwareDecompress(void *param, int recv_size, int dwMaxBytes); |
|
|
|
#endif /* __ENCRYPT_H__ */
|
|
|