mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-22 16:18:09 +00:00
Merge pull request #3308 from philsmd/radmin3_use_sha1_update_utf16beN
radmin3: use make_utf16beN_S () and sha1_update_utf16beN ()
This commit is contained in:
commit
6886a70692
@ -110,13 +110,11 @@ KERNEL_FQ void m29200_mxx (KERN_ATTR_VECTOR_ESALT (radmin3_t))
|
||||
|
||||
// add password to the user name (and colon, included):
|
||||
|
||||
sha1_ctx_vector_t c0;
|
||||
sha1_ctx_t c0 = ctx0;
|
||||
|
||||
sha1_init_vector_from_scalar (&c0, &ctx0);
|
||||
sha1_update_utf16beN (&c0, w, pw_len);
|
||||
|
||||
sha1_update_vector_utf16beN (&c0, w, pw_len);
|
||||
|
||||
sha1_final_vector (&c0);
|
||||
sha1_final (&c0);
|
||||
|
||||
|
||||
// add first SHA1 result to main salt:
|
||||
@ -351,13 +349,11 @@ KERNEL_FQ void m29200_sxx (KERN_ATTR_VECTOR_ESALT (radmin3_t))
|
||||
|
||||
// add password to the user name (and colon, included):
|
||||
|
||||
sha1_ctx_vector_t c0;
|
||||
sha1_ctx_t c0 = ctx0;
|
||||
|
||||
sha1_init_vector_from_scalar (&c0, &ctx0);
|
||||
sha1_update_utf16beN (&c0, w, pw_len);
|
||||
|
||||
sha1_update_vector_utf16beN (&c0, w, pw_len);
|
||||
|
||||
sha1_final_vector (&c0);
|
||||
sha1_final (&c0);
|
||||
|
||||
|
||||
// add first SHA1 result to main salt:
|
||||
|
Loading…
Reference in New Issue
Block a user