mirror of
https://github.com/hashcat/hashcat
synced 2024-11-24 14:27:14 +01:00
25 lines
511 B
C
25 lines
511 B
C
|
/**
|
||
|
* Author......: See docs/credits.txt
|
||
|
* License.....: MIT
|
||
|
*/
|
||
|
|
||
|
#include "emu_general.h"
|
||
|
|
||
|
#define DGST_ELEM 4
|
||
|
#define DGST_R0 0
|
||
|
#define DGST_R1 1
|
||
|
#define DGST_R2 2
|
||
|
#define DGST_R3 3
|
||
|
|
||
|
#pragma GCC diagnostic push
|
||
|
#pragma GCC diagnostic ignored "-Wunused-variable"
|
||
|
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
||
|
#pragma GCC diagnostic ignored "-Wunknown-pragmas"
|
||
|
|
||
|
#include "inc_vendor.h"
|
||
|
//#include "inc_types.h"
|
||
|
//#include "inc_common.h"
|
||
|
#include "inc_rp_optimized.h"
|
||
|
|
||
|
#pragma GCC diagnostic pop
|