Restore maximum password length 128 for pure RAR3 kernels

This commit is contained in:
Jens Steube
2021-05-21 22:04:24 +02:00
parent fd51086395
commit df8a773341
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -229,7 +229,7 @@ KERNEL_FQ void gpu_utf8_to_utf16 (GLOBAL_AS pw_t *pws_buf, const u64 gid_max)
hc_enc_init (&hc_enc);
pw_out.pw_len = hc_enc_next (&hc_enc, pw_in.i, pw_in.pw_len, 64, pw_out.i, 256);
pw_out.pw_len = hc_enc_next (&hc_enc, pw_in.i, pw_in.pw_len, 256, pw_out.i, 256);
pws_buf[gid] = pw_out;
}