mirror of
https://github.com/GOSTSec/sgminer
synced 2025-08-26 22:02:09 +00:00
10 lines
315 B
C
10 lines
315 B
C
#ifndef BLAKE256_H
|
|
#define BLAKE256_H
|
|
|
|
#include "miner.h"
|
|
|
|
extern int blake256_test(unsigned char *pdata, const unsigned char *ptarget, uint32_t nonce);
|
|
extern void precalc_hash_blake256(dev_blk_ctx *blk, uint32_t *state, uint32_t *pdata);
|
|
extern void blake256_regenhash(struct work *work);
|
|
|
|
#endif /* BLAKE256_H */ |