Update CMakeLists.txt - play with openssl
[novacoin.git] / src / scrypt.h
1 #ifndef SCRYPT_H
2 #define SCRYPT_H
3
4 #include <stdint.h>
5 #include "uint256.h"
6
7 #define SCRYPT_BUFFER_SIZE (131072 + 63)
8
9 uint256 scrypt_blockhash(const uint8_t* input);
10
11 #endif // SCRYPT_H