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

View File

@@ -101,7 +101,7 @@ u32 module_pw_max (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED con
{
const bool optimized_kernel = (hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL);
u32 pw_max = 64;
u32 pw_max = 128;
if (optimized_kernel == true)
{

View File

@@ -118,7 +118,7 @@ u32 module_pw_max (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED con
{
const bool optimized_kernel = (hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL);
u32 pw_max = 64;
u32 pw_max = 128;
if (optimized_kernel == true)
{

View File

@@ -401,7 +401,7 @@ u32 module_pw_max (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED con
{
const bool optimized_kernel = (hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL);
u32 pw_max = 64;
u32 pw_max = 128;
if (optimized_kernel == true)
{