1
0
mirror of https://github.com/GOSTSec/ccminer synced 2025-01-08 22:07:56 +00:00

sia: add missing cputest

This commit is contained in:
Tanguy Pruvot 2017-06-09 07:10:14 +02:00
parent 0f3fac9536
commit 037bbe3ad3
2 changed files with 4 additions and 0 deletions

View File

@ -872,6 +872,7 @@ void applog_compare_hash(void *hash, void *hash_ref);
void print_hash_tests(void);
void bastionhash(void* output, const unsigned char* input);
void blake256hash(void *output, const void *input, int8_t rounds);
void blake2b_hash(void *output, const void *input);
void blake2s_hash(void *output, const void *input);
void bmw_hash(void *state, const void *input);
void c11hash(void *output, const void *input);

View File

@ -2255,6 +2255,9 @@ void print_hash_tests(void)
sha256t_hash(&hash[0], &buf[0]);
printpfx("sha256t", hash);
blake2b_hash(&hash[0], &buf[0]);
printpfx("sia", hash);
sibhash(&hash[0], &buf[0]);
printpfx("sib", hash);