From 850f5149ddc98dd952ce27964a3b587f8d8ce511 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 17 Feb 2014 12:35:10 +0100 Subject: [PATCH] Another scrypt_1024_1_1_256_sp() fix. --- scrypt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrypt.c b/scrypt.c index 47201782..b026f313 100644 --- a/scrypt.c +++ b/scrypt.c @@ -431,7 +431,7 @@ void scrypt_regenhash(struct work *work) } else { 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);