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