mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 20:39:17 +00:00
add _S to hc_swap32 in a0,a1
This commit is contained in:
parent
9262056b0e
commit
ec3a940785
@ -121,10 +121,10 @@ DECLSPEC void aes256_scrt_format (PRIVATE_AS u32 *aes_ks, PRIVATE_AS u32 *pw, co
|
|||||||
|
|
||||||
shift_buffer_by_offset(hash,pw_len+4);
|
shift_buffer_by_offset(hash,pw_len+4);
|
||||||
|
|
||||||
hash[0] = hc_swap32(pw_len);
|
hash[0] = hc_swap32_S(pw_len);
|
||||||
hash[1] |= hc_swap32(pw[0]);
|
hash[1] |= hc_swap32_S(pw[0]);
|
||||||
hash[2] |= hc_swap32(pw[1]);
|
hash[2] |= hc_swap32_S(pw[1]);
|
||||||
hash[3] |= hc_swap32(pw[2]);
|
hash[3] |= hc_swap32_S(pw[2]);
|
||||||
|
|
||||||
AES256_encrypt (aes_ks, hash, out, s_te0, s_te1, s_te2, s_te3, s_te4);
|
AES256_encrypt (aes_ks, hash, out, s_te0, s_te1, s_te2, s_te3, s_te4);
|
||||||
}
|
}
|
||||||
|
@ -121,10 +121,10 @@ DECLSPEC void aes256_scrt_format (PRIVATE_AS u32 *aes_ks, PRIVATE_AS u32 *pw, co
|
|||||||
|
|
||||||
shift_buffer_by_offset(hash,pw_len+4);
|
shift_buffer_by_offset(hash,pw_len+4);
|
||||||
|
|
||||||
hash[0] = hc_swap32(pw_len);
|
hash[0] = hc_swap32_S(pw_len);
|
||||||
hash[1] |= hc_swap32(pw[0]);
|
hash[1] |= hc_swap32_S(pw[0]);
|
||||||
hash[2] |= hc_swap32(pw[1]);
|
hash[2] |= hc_swap32_S(pw[1]);
|
||||||
hash[3] |= hc_swap32(pw[2]);
|
hash[3] |= hc_swap32_S(pw[2]);
|
||||||
|
|
||||||
AES256_encrypt (aes_ks, hash, out, s_te0, s_te1, s_te2, s_te3, s_te4);
|
AES256_encrypt (aes_ks, hash, out, s_te0, s_te1, s_te2, s_te3, s_te4);
|
||||||
}
|
}
|
||||||
@ -197,9 +197,9 @@ KERNEL_FQ void m31400_mxx (KERN_ATTR_BASIC ())
|
|||||||
sha256_update_global_swap (&ctx, combs_buf[il_pos].i, combs_buf[il_pos].pw_len);
|
sha256_update_global_swap (&ctx, combs_buf[il_pos].i, combs_buf[il_pos].pw_len);
|
||||||
|
|
||||||
u32 pw_candidate[3];
|
u32 pw_candidate[3];
|
||||||
pw_candidate[0]= hc_swap32(ctx.w0[0]);
|
pw_candidate[0]= hc_swap32_S(ctx.w0[0]);
|
||||||
pw_candidate[1]= hc_swap32(ctx.w0[1]);
|
pw_candidate[1]= hc_swap32_S(ctx.w0[1]);
|
||||||
pw_candidate[2]= hc_swap32(ctx.w0[2]);
|
pw_candidate[2]= hc_swap32_S(ctx.w0[2]);
|
||||||
u32 pw_len=ctx.len;
|
u32 pw_len=ctx.len;
|
||||||
|
|
||||||
sha256_final (&ctx);
|
sha256_final (&ctx);
|
||||||
@ -297,9 +297,9 @@ KERNEL_FQ void m31400_sxx (KERN_ATTR_BASIC ())
|
|||||||
sha256_update_global_swap (&ctx, combs_buf[il_pos].i, combs_buf[il_pos].pw_len);
|
sha256_update_global_swap (&ctx, combs_buf[il_pos].i, combs_buf[il_pos].pw_len);
|
||||||
|
|
||||||
u32 pw_candidate[3];
|
u32 pw_candidate[3];
|
||||||
pw_candidate[0]=hc_swap32(ctx.w0[0]);
|
pw_candidate[0]=hc_swap32_S(ctx.w0[0]);
|
||||||
pw_candidate[1]=hc_swap32(ctx.w0[1]);
|
pw_candidate[1]=hc_swap32_S(ctx.w0[1]);
|
||||||
pw_candidate[2]=hc_swap32(ctx.w0[2]);
|
pw_candidate[2]=hc_swap32_S(ctx.w0[2]);
|
||||||
u32 pw_len=ctx.len;
|
u32 pw_len=ctx.len;
|
||||||
|
|
||||||
sha256_final (&ctx);
|
sha256_final (&ctx);
|
||||||
|
Loading…
Reference in New Issue
Block a user