1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-11 08:10:59 +00:00

Move luks_tmp_t to correct position in inc_types.h

This commit is contained in:
Jens Steube 2017-06-04 21:52:35 +02:00
parent 9a1951d61c
commit 542f73eb17

View File

@ -763,22 +763,6 @@ typedef struct blake2
} blake2_t;
typedef struct luks_tmp
{
u32 ipad32[8];
u64 ipad64[8];
u32 opad32[8];
u64 opad64[8];
u32 dgst32[32];
u64 dgst64[16];
u32 out32[32];
u64 out64[16];
} luks_tmp_t;
typedef struct chacha20
{
u32 iv[2];
@ -1084,6 +1068,22 @@ typedef struct pdf14_tmp
} pdf14_tmp_t;
typedef struct luks_tmp
{
u32 ipad32[8];
u64 ipad64[8];
u32 opad32[8];
u64 opad64[8];
u32 dgst32[32];
u64 dgst64[16];
u32 out32[32];
u64 out64[16];
} luks_tmp_t;
typedef struct pdf17l8_tmp
{
union
@ -1541,4 +1541,3 @@ typedef enum combinator_mode
COMBINATOR_MODE_BASE_RIGHT = 10002
} combinator_mode_t;