mirror of
https://github.com/hashcat/hashcat.git
synced 2025-05-27 11:19:04 +00:00
Rename hc_fopen_nozip() to hc_fopen_raw()
This commit is contained in:
parent
5bea13200f
commit
2af45cd03f
@ -16,7 +16,7 @@ int _wopen (const char *path, int oflag, ...);
|
||||
#endif
|
||||
|
||||
bool hc_fopen (HCFILE *fp, const char *path, char *mode);
|
||||
bool hc_fopen_nozip (HCFILE *fp, const char *path, char *mode);
|
||||
bool hc_fopen_raw (HCFILE *fp, const char *path, char *mode);
|
||||
int hc_fscanf (HCFILE *fp, const char *format, void *ptr);
|
||||
int hc_fprintf (HCFILE *fp, const char *format, ...);
|
||||
int hc_vfprintf (HCFILE *fp, const char *format, va_list ap);
|
||||
|
@ -94,7 +94,7 @@ int cpu_crc32 (const char *filename, u8 *keytab, const size_t keytabsz)
|
||||
|
||||
HCFILE fp;
|
||||
|
||||
hc_fopen_nozip (&fp, filename, "rb");
|
||||
hc_fopen_raw (&fp, filename, "rb");
|
||||
|
||||
#define MAX_KEY_SIZE (1024 * 1024)
|
||||
|
||||
|
@ -113,7 +113,7 @@ bool hc_fopen (HCFILE *fp, const char *path, char *mode)
|
||||
return true;
|
||||
}
|
||||
|
||||
bool hc_fopen_nozip (HCFILE *fp, const char *path, char *mode)
|
||||
bool hc_fopen_raw (HCFILE *fp, const char *path, char *mode)
|
||||
{
|
||||
if (path == NULL || mode == NULL) return false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user