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.

37 lines
710 B

/**
* @file encrypt.h
*
* Interface of functions for compression and decompressing MPQ data.
*/
#ifndef __ENCRYPT_H__
#define __ENCRYPT_H__
namespace dvl {
#ifdef __cplusplus
extern "C" {
#endif
typedef struct TDataInfo {
Uint8 *srcData;
Uint32 srcOffset;
Uint8 *destData;
Uint32 destOffset;
Uint32 size;
} TDataInfo;
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();
DWORD PkwareCompress(BYTE *srcData, DWORD size);
void PkwareDecompress(BYTE *pbInBuff, int recv_size, int dwMaxBytes);
#ifdef __cplusplus
}
#endif
}
#endif /* __ENCRYPT_H__ */