mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 08:15:46 +00:00
(and core5compat) Signed-off-by: crueter <crueter@eden-emu.dev> Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/71
26 lines
1,022 B
Diff
26 lines
1,022 B
Diff
diff --git a/quazip/minizip_crypt.h b/quazip/minizip_crypt.h
|
|
index 2e833f7..ea9d277 100644
|
|
--- a/quazip/minizip_crypt.h
|
|
+++ b/quazip/minizip_crypt.h
|
|
@@ -90,13 +90,14 @@ static void init_keys(const char* passwd,unsigned long* pkeys,const z_crc_t FAR
|
|
# define ZCR_SEED2 3141592654UL /* use PI as default pattern */
|
|
# endif
|
|
|
|
-static int crypthead(passwd, buf, bufSize, pkeys, pcrc_32_tab, crcForCrypting)
|
|
- const char *passwd; /* password string */
|
|
- unsigned char *buf; /* where to write header */
|
|
- int bufSize;
|
|
- unsigned long* pkeys;
|
|
- const z_crc_t FAR * pcrc_32_tab;
|
|
- unsigned long crcForCrypting;
|
|
+static int crypthead(
|
|
+ const char *passwd, /* password string */
|
|
+ unsigned char *buf, /* where to write header */
|
|
+ int bufSize,
|
|
+ unsigned long* pkeys,
|
|
+ const z_crc_t FAR * pcrc_32_tab,
|
|
+ unsigned long crcForCrypting
|
|
+)
|
|
{
|
|
int n; /* index in random header */
|
|
int t; /* temporary */
|