mirror of https://github.com/GOSTSec/ccminer
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
316 B
9 lines
316 B
10 years ago
|
#ifndef KECCAK_H
|
||
|
#define KEKKAC_H
|
||
|
|
||
|
extern "C" void prepare_keccak512(int thr_id, const uint32_t host_pdata[20]);
|
||
|
extern "C" void pre_keccak512(int thr_id, int stream, uint32_t nonce, int throughput);
|
||
|
extern "C" void post_keccak512(int thr_id, int stream, uint32_t nonce, int throughput);
|
||
|
|
||
|
#endif // #ifndef KEKKAC_H
|