1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-26 08:28:20 +00:00

Add digest_t to emu_m02501_pure.h for later use

This commit is contained in:
jsteube 2019-03-25 20:45:00 +01:00
parent 2bb594b385
commit 6e57028912

View File

@ -6,6 +6,18 @@
#ifndef _EMU_M02501_PURE_H #ifndef _EMU_M02501_PURE_H
#define _EMU_M02501_PURE_H #define _EMU_M02501_PURE_H
#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;
typedef struct wpa_pmk_tmp typedef struct wpa_pmk_tmp
{ {
u32 out[8]; u32 out[8];