This commit is contained in:
Jay D Dee
2017-12-17 12:00:42 -05:00
parent 7a1389998b
commit 79164c24b5
7 changed files with 230 additions and 56 deletions

View File

@@ -31,7 +31,7 @@ void lyra2h_hash( void *state, const void *input )
sph_blake256( &ctx_blake, input + 64, 16 );
sph_blake256_close( &ctx_blake, hash );
LYRA2Z( lyra2h_matrix, hash, 32, hash, 32, hash, 32, 8, 8, 8);
LYRA2Z( lyra2h_matrix, hash, 32, hash, 32, hash, 32, 16, 16, 16 );
memcpy(state, hash, 32);
}