Browse Source

Another scrypt_1024_1_1_256_sp() fix.

nfactor-troky^2
unknown 11 years ago
parent
commit
850f5149dd
  1. 2
      scrypt.c

2
scrypt.c

@ -431,7 +431,7 @@ void scrypt_regenhash(struct work *work)
} }
else { else {
scratchbuf = (char *)alloca(SCRATCHBUF_SIZE); scratchbuf = (char *)alloca(SCRATCHBUF_SIZE);
scrypt_1024_1_1_256_sp(data, scratchbuf, ohash, 1024); scrypt_1024_1_1_256_sp(data, scratchbuf, ohash);
} }
flip32(ohash, ohash); flip32(ohash, ohash);

Loading…
Cancel
Save