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.
8 lines
316 B
8 lines
316 B
#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
|
|
|