Skip to content

Commit

Permalink
axiom: cputest entry
Browse files Browse the repository at this point in the history
  • Loading branch information
tpruvot committed Jul 29, 2015
1 parent 36cf7af commit 0c74eb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions miner.h
Expand Up @@ -508,6 +508,7 @@ void print_hash_tests(void);

void sha256d(unsigned char *hash, const unsigned char *data, int len);
void animehash(void *state, const void *input);
void axiomhash(void *state, const void *input);
void blakehash(void *state, const void *input);
void blakecoinhash(void *state, const void *input);
void blake2s_hash(void *output, const void *input);
Expand Down
3 changes: 3 additions & 0 deletions util.c
Expand Up @@ -2002,6 +2002,9 @@ void print_hash_tests(void)
animehash(&hash[0], &buf[0]);
printpfx("anime", hash);

axiomhash(&hash[0], &buf[0]);
printpfx("axiom", hash);

blakehash(&hash[0], &buf[0]);
printpfx("blake", hash);

Expand Down

0 comments on commit 0c74eb8

Please sign in to comment.