mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-09 22:38:01 +00:00
13 lines
384 B
C
13 lines
384 B
C
#ifndef NEOSCRYPT_H
|
|
#define NEOSCRYPT_H
|
|
|
|
#include "miner.h"
|
|
|
|
/* The neoscrypt scratch buffer needs 32kBytes memory. */
|
|
#define NEOSCRYPT_SCRATCHBUF_SIZE (32 * 1024)
|
|
|
|
/* These routines are always available. */
|
|
extern void neoscrypt_regenhash(struct work *work);
|
|
extern void neoscrypt(const unsigned char *input, unsigned char *output, unsigned int profile);
|
|
|
|
#endif /* NEOSCRYPT_H */ |