radmin3: use make_utf16beN_S () and sha1_update_utf16beN ()

pull/3308/head
philsmd 2 years ago
parent ab8cc31b2d
commit 4241900ec4
No known key found for this signature in database
GPG Key ID: 4F25D016D9D6A8AF

@ -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_init_vector_from_scalar (&c0, &ctx0);
sha1_ctx_t c0 = ctx0;
sha1_update_vector_utf16beN (&c0, w, pw_len);
sha1_update_utf16beN (&c0, w, pw_len);
sha1_final_vector (&c0);
sha1_final (&c0);
// add first SHA1 result to main salt:

Loading…
Cancel
Save