1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-15 04:23:06 +00:00

Fix -m 8900 bug

This commit is contained in:
jsteube 2016-09-28 12:58:56 +02:00
parent 791cd5ec42
commit c3338f0a9a
2 changed files with 2 additions and 2 deletions

View File

@ -20576,7 +20576,7 @@ char *hashconfig_benchmark_mask (const hashconfig_t *hashconfig)
break;
case 14000: mask = "?b?b?b?b?b?b?bx";
break;
case 14100: mask = "?b?b?b?b?b?b?bx";
case 14100: mask = "?b?b?b?b?b?b?bxxxxxxxxxxxxxxxxx";
break;
default: mask = "?b?b?b?b?b?b?b";
break;

View File

@ -2749,7 +2749,7 @@ int opencl_session_begin (opencl_ctx_t *opencl_ctx, hashconfig_t *hashconfig, co
scrypt_tmp_size = (128 * scrypt_r * scrypt_p);
hashconfig->tmp_size = scrypt_tmp_size; break;
hashconfig->tmp_size = scrypt_tmp_size;
uint tmto_start = 0;
uint tmto_stop = 10;