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.
|
|
|
|
/**
|
|
|
|
|
* @file encrypt.h
|
|
|
|
|
*
|
|
|
|
|
* Interface of functions for compression and decompressing MPQ data.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef __ENCRYPT_H__
|
|
|
|
|
#define __ENCRYPT_H__
|
|
|
|
|
|
|
|
|
|
void Decrypt(DWORD *castBlock, DWORD size, DWORD key);
|
|
|
|
|
void Encrypt(DWORD *castBlock, DWORD size, DWORD key);
|
|
|
|
|
DWORD Hash(const char *s, int type);
|
|
|
|
|
void InitHash();
|
|
|
|
|
int PkwareCompress(BYTE *srcData, int size);
|
|
|
|
|
void PkwareDecompress(BYTE *pbInBuff, int recv_size, int dwMaxBytes);
|
|
|
|
|
|
|
|
|
|
#endif /* __ENCRYPT_H__ */
|