mirror of
https://github.com/GOSTSec/ccminer
synced 2025-01-01 18:55:59 +00:00
9 lines
316 B
C
9 lines
316 B
C
|
#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
|