mirror of
https://github.com/hashcat/hashcat.git
synced 2025-02-02 19:01:09 +00:00
Optimize luks_tmp_t type size
This commit is contained in:
parent
dfba341ac5
commit
dd263c1d20
@ -749,34 +749,18 @@ typedef struct itunes_backup
|
|||||||
|
|
||||||
typedef struct luks_tmp
|
typedef struct luks_tmp
|
||||||
{
|
{
|
||||||
union
|
u32 ipad32[8];
|
||||||
{
|
u64 ipad64[8];
|
||||||
u32 ipad32[32];
|
|
||||||
u64 ipad64[16];
|
|
||||||
|
|
||||||
} ipad;
|
u32 opad32[8];
|
||||||
|
u64 opad64[8];
|
||||||
|
|
||||||
union
|
|
||||||
{
|
|
||||||
u32 opad32[32];
|
|
||||||
u64 opad64[16];
|
|
||||||
|
|
||||||
} opad;
|
|
||||||
|
|
||||||
union
|
|
||||||
{
|
|
||||||
u32 dgst32[32];
|
u32 dgst32[32];
|
||||||
u64 dgst64[16];
|
u64 dgst64[16];
|
||||||
|
|
||||||
} dgst;
|
|
||||||
|
|
||||||
union
|
|
||||||
{
|
|
||||||
u32 out32[32];
|
u32 out32[32];
|
||||||
u64 out64[16];
|
u64 out64[16];
|
||||||
|
|
||||||
} out;
|
|
||||||
|
|
||||||
} luks_tmp_t;
|
} luks_tmp_t;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
|
@ -131,34 +131,18 @@ typedef struct itunes_backup
|
|||||||
|
|
||||||
typedef struct luks_tmp
|
typedef struct luks_tmp
|
||||||
{
|
{
|
||||||
union
|
u32 ipad32[8];
|
||||||
{
|
u64 ipad64[8];
|
||||||
u32 ipad32[32];
|
|
||||||
u64 ipad64[16];
|
|
||||||
|
|
||||||
} ipad;
|
u32 opad32[8];
|
||||||
|
u64 opad64[8];
|
||||||
|
|
||||||
union
|
|
||||||
{
|
|
||||||
u32 opad32[32];
|
|
||||||
u64 opad64[16];
|
|
||||||
|
|
||||||
} opad;
|
|
||||||
|
|
||||||
union
|
|
||||||
{
|
|
||||||
u32 dgst32[32];
|
u32 dgst32[32];
|
||||||
u64 dgst64[16];
|
u64 dgst64[16];
|
||||||
|
|
||||||
} dgst;
|
|
||||||
|
|
||||||
union
|
|
||||||
{
|
|
||||||
u32 out32[32];
|
u32 out32[32];
|
||||||
u64 out64[16];
|
u64 out64[16];
|
||||||
|
|
||||||
} out;
|
|
||||||
|
|
||||||
} luks_tmp_t;
|
} luks_tmp_t;
|
||||||
|
|
||||||
typedef struct rar5
|
typedef struct rar5
|
||||||
|
Loading…
Reference in New Issue
Block a user