mirror of
https://github.com/GOSTSec/ccminer
synced 2025-01-24 05:24:16 +00:00
sia: add missing cputest
This commit is contained in:
parent
0f3fac9536
commit
037bbe3ad3
1
miner.h
1
miner.h
@ -872,6 +872,7 @@ void applog_compare_hash(void *hash, void *hash_ref);
|
|||||||
void print_hash_tests(void);
|
void print_hash_tests(void);
|
||||||
void bastionhash(void* output, const unsigned char* input);
|
void bastionhash(void* output, const unsigned char* input);
|
||||||
void blake256hash(void *output, const void *input, int8_t rounds);
|
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 blake2s_hash(void *output, const void *input);
|
||||||
void bmw_hash(void *state, const void *input);
|
void bmw_hash(void *state, const void *input);
|
||||||
void c11hash(void *output, const void *input);
|
void c11hash(void *output, const void *input);
|
||||||
|
3
util.cpp
3
util.cpp
@ -2255,6 +2255,9 @@ void print_hash_tests(void)
|
|||||||
sha256t_hash(&hash[0], &buf[0]);
|
sha256t_hash(&hash[0], &buf[0]);
|
||||||
printpfx("sha256t", hash);
|
printpfx("sha256t", hash);
|
||||||
|
|
||||||
|
blake2b_hash(&hash[0], &buf[0]);
|
||||||
|
printpfx("sia", hash);
|
||||||
|
|
||||||
sibhash(&hash[0], &buf[0]);
|
sibhash(&hash[0], &buf[0]);
|
||||||
printpfx("sib", hash);
|
printpfx("sib", hash);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user