8a0727796efae1b5c95b60beb099186a7465e3c2
[novacoin.git] / src / scrypt.h
1 #ifndef SCRYPT_MINE_H
2 #define SCRYPT_MINE_H
3
4 #include <stdint.h>
5 #include <stdlib.h>
6
7 #include "util.h"
8 #include "net.h"
9
10 #define SCRYPT_BUFFER_SIZE (131072 + 63)
11
12 uint256 scrypt_blockhash(const uint8_t* input);
13
14 #endif // SCRYPT_MINE_H