Skip to content

Commit

Permalink
sia: add missing cputest
Browse files Browse the repository at this point in the history
  • Loading branch information
tpruvot committed Jun 15, 2017
1 parent 0f3fac9 commit 037bbe3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions miner.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
3 changes: 3 additions & 0 deletions util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 037bbe3

Please sign in to comment.