mirror of
https://github.com/GOSTSec/ccminer
synced 2025-01-09 14:28:15 +00:00
9dc78da2ee
scrypt-jane under work...
11 lines
331 B
C
11 lines
331 B
C
#ifndef SHA256_H
|
|
#define SHA256_H
|
|
|
|
#include <stdint.h>
|
|
|
|
extern "C" void prepare_sha256(int thr_id, uint32_t cpu_pdata[20], uint32_t cpu_midstate[8]);
|
|
extern "C" void pre_sha256(int thr_id, int stream, uint32_t nonce, int throughput);
|
|
extern "C" void post_sha256(int thr_id, int stream, int throughput);
|
|
|
|
#endif // #ifndef SHA256_H
|