This commit is contained in:
Jay D Dee
2017-07-31 20:02:45 -04:00
parent ec4f6028a2
commit 39f089d3dc
7 changed files with 24 additions and 13 deletions

View File

@@ -120,7 +120,7 @@ void init_tt_ctx()
void timetravel_hash(void *output, const void *input)
{
uint32_t hash[128] __attribute__ ((aligned (64)));
uint32_t hash[ 16 * HASH_FUNC_COUNT ] __attribute__ ((aligned (64)));
uint32_t *hashA, *hashB;
tt_ctx_holder ctx __attribute__ ((aligned (64)));
uint32_t dataLen = 64;

View File

@@ -126,7 +126,7 @@ void init_tt10_ctx()
void timetravel10_hash(void *output, const void *input)
{
uint32_t hash[128] __attribute__ ((aligned (64)));
uint32_t hash[ 16 * HASH_FUNC_COUNT ] __attribute__ ((aligned (64)));
uint32_t *hashA, *hashB;
tt10_ctx_holder ctx __attribute__ ((aligned (64)));
uint32_t dataLen = 64;