Skip to content

Commit

Permalink
Merge pull request hashcat#3644 from PenguinKeeper7/wallet-const-fix
Browse files Browse the repository at this point in the history
Wallet const fix
  • Loading branch information
jsteube authored Mar 16, 2023
2 parents 0aaf19e + 8076f64 commit a66f390
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OpenCL/m25500-pure.cl
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ KERNEL_FQ void m25500_comp (KERN_ATTR_TMPS_ESALT (pbkdf2_sha256_tmp_t, pbkdf2_sh

// iv

const u32 iv[4];
u32 iv[4];

iv[0] = esalt_bufs[DIGESTS_OFFSET_HOST].iv_buf[0];
iv[1] = esalt_bufs[DIGESTS_OFFSET_HOST].iv_buf[1];
Expand Down
2 changes: 1 addition & 1 deletion OpenCL/m26600-pure.cl
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ KERNEL_FQ void m26600_comp (KERN_ATTR_TMPS_ESALT (pbkdf2_sha256_tmp_t, pbkdf2_sh

// iv

const u32 iv[4];
u32 iv[4];

iv[0] = esalt_bufs[DIGESTS_OFFSET_HOST].iv_buf[0];
iv[1] = esalt_bufs[DIGESTS_OFFSET_HOST].iv_buf[1];
Expand Down

0 comments on commit a66f390

Please sign in to comment.