mirror of
https://github.com/hashcat/hashcat.git
synced 2025-04-17 15:56:20 +00:00
30 lines
538 B
C
30 lines
538 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#include "common.h"
|
|
#include "types.h"
|
|
#include "emu_general.h"
|
|
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wunused-variable"
|
|
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
#pragma GCC diagnostic ignored "-Wunknown-pragmas"
|
|
|
|
#define DGST_ELEM 4
|
|
#define DGST_POS0 0
|
|
#define DGST_POS1 1
|
|
#define DGST_POS2 2
|
|
#define DGST_POS3 3
|
|
|
|
typedef struct digest
|
|
{
|
|
u32 digest_buf[DGST_ELEM];
|
|
|
|
} digest_t;
|
|
|
|
#include "m16801-pure.cl"
|
|
|
|
#pragma GCC diagnostic pop
|