mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 12:29:35 +00:00
44 lines
787 B
C
44 lines
787 B
C
/**
|
|
* Authors.....: Jens Steube <jens.steube@gmail.com>
|
|
* magnum <john.magnum@hushmail.com>
|
|
*
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _COMMON_H
|
|
#define _COMMON_H
|
|
|
|
#define _GNU_SOURCE
|
|
#define _FILE_OFFSET_BITS 64
|
|
|
|
#define EXEC_CACHE 128
|
|
|
|
#define SPEED_CACHE 128
|
|
#define SPEED_MAXAGE 4096
|
|
|
|
#define HCBUFSIZ 0x50000 // general large space buffer size in case the size is unknown at compile-time
|
|
|
|
#define BLOCK_SIZE 64
|
|
|
|
#define EXPECTED_ITERATIONS 10000
|
|
|
|
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
|
|
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
|
|
|
|
#define DEVICES_MAX 128
|
|
|
|
#define PARAMCNT 64
|
|
|
|
|
|
#define CEIL(a) ((a - (int) (a)) > 0 ? a + 1 : a)
|
|
|
|
#ifdef __APPLE__
|
|
#define __stdcall
|
|
#endif
|
|
|
|
#ifdef _WIN
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#endif
|
|
|
|
#endif // _COMMON_H
|