Vectorized 1Password, cloudkeychain and added support for long passwords

pull/1291/head
jsteube 7 years ago
parent d63e5f259f
commit ccd85f345d

@ -42,7 +42,6 @@ void sha1_transform (const u32 w0[4], const u32 w1[4], const u32 w2[4], const u3
u32 we_t = w3[2];
u32 wf_t = w3[3];
#undef K
#define K SHA1C00
SHA1_STEP_S (SHA1_F0o, a, b, c, d, e, w0_t);
@ -138,6 +137,8 @@ void sha1_transform (const u32 w0[4], const u32 w1[4], const u32 w2[4], const u3
we_t = rotl32_S ((wb_t ^ w6_t ^ w0_t ^ we_t), 1u); SHA1_STEP_S (SHA1_F1, c, d, e, a, b, we_t);
wf_t = rotl32_S ((wc_t ^ w7_t ^ w1_t ^ wf_t), 1u); SHA1_STEP_S (SHA1_F1, b, c, d, e, a, wf_t);
#undef K
digest[0] += a;
digest[1] += b;
digest[2] += c;
@ -844,7 +845,6 @@ void sha1_transform_vector (const u32x w0[4], const u32x w1[4], const u32x w2[4]
u32x we_t = w3[2];
u32x wf_t = w3[3];
#undef K
#define K SHA1C00
SHA1_STEP (SHA1_F0o, a, b, c, d, e, w0_t);
@ -940,6 +940,8 @@ void sha1_transform_vector (const u32x w0[4], const u32x w1[4], const u32x w2[4]
we_t = rotl32 ((wb_t ^ w6_t ^ w0_t ^ we_t), 1u); SHA1_STEP (SHA1_F1, c, d, e, a, b, we_t);
wf_t = rotl32 ((wc_t ^ w7_t ^ w1_t ^ wf_t), 1u); SHA1_STEP (SHA1_F1, b, c, d, e, a, wf_t);
#undef K
digest[0] += a;
digest[1] += b;
digest[2] += c;

@ -115,6 +115,9 @@ void sha256_transform (const u32 w0[4], const u32 w1[4], const u32 w2[4], const
ROUND_EXPAND_S (); ROUND_STEP_S (i);
}
#undef ROUND_EXPAND_S
#undef ROUND_STEP_S
digest[0] += a;
digest[1] += b;
digest[2] += c;
@ -880,6 +883,9 @@ void sha256_transform_vector (const u32x w0[4], const u32x w1[4], const u32x w2[
ROUND_EXPAND (); ROUND_STEP (i);
}
#undef ROUND_EXPAND
#undef ROUND_STEP
digest[0] += a;
digest[1] += b;
digest[2] += c;

@ -123,6 +123,9 @@ void sha512_transform (const u32 w0[4], const u32 w1[4], const u32 w2[4], const
ROUND_EXPAND_S (); ROUND_STEP_S (i);
}
#undef ROUND_EXPAND_S
#undef ROUND_STEP_S
digest[0] += a;
digest[1] += b;
digest[2] += c;
@ -1315,6 +1318,9 @@ void sha512_transform_vector (const u32x w0[4], const u32x w1[4], const u32x w2[
ROUND_EXPAND (); ROUND_STEP (i);
}
#undef ROUND_EXPAND
#undef ROUND_STEP
digest[0] += a;
digest[1] += b;
digest[2] += c;

@ -2351,5 +2351,6 @@ void whirlpool_final_vector (whirlpool_ctx_vector_t *ctx, __local u32 (*s_Ch)[25
whirlpool_transform_vector (ctx->w0, ctx->w1, ctx->w2, ctx->w3, ctx->h, s_Ch, s_Cl);
}
#undef R
#undef BOX
#undef BOX_S

File diff suppressed because it is too large Load Diff

@ -24698,6 +24698,8 @@ int hashconfig_init (hashcat_ctx_t *hashcat_ctx)
break;
case 7100: hashconfig->pw_max = 128; // PBKDF2-HMAC-SHA512 max
break;
case 8200: hashconfig->pw_max = 128; // PBKDF2-HMAC-SHA512 max
break;
case 8500: hashconfig->pw_max = 8; // DES max
break;
case 8800: hashconfig->pw_max = 64; // PBKDF2-HMAC-SHA1 max

Loading…
Cancel
Save