mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-09 14:28:12 +00:00
13 lines
298 B
C
13 lines
298 B
C
#ifndef PLUCK_H
|
|
#define PLUCK_H
|
|
|
|
#include "miner.h"
|
|
#define PLUCK_SCRATCHBUF_SIZE (128 * 1024)
|
|
#define PLUCK_SECBUF_SIZE (64 * 1024)
|
|
|
|
extern int pluck_test(unsigned char *pdata, const unsigned char *ptarget,
|
|
uint32_t nonce);
|
|
extern void pluck_regenhash(struct work *work);
|
|
|
|
#endif /* PLUCK_H */
|