Add Litecoin scrypt proof of work and use scrypt instead of hash256 if we are on...
[p2pool.git] / p2pool / litecoin / scrypt.h
1 #ifndef SCRYPT_H
2 #define SCRYPT_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 void scrypt_1024_1_1_256(const char* input, char* output);
9 void scrypt_1024_1_1_256_sp(const char* input, char* output, char* scratchpad);
10 const int scrypt_scratchpad_size = 131583;
11
12 #ifdef __cplusplus
13 }
14 #endif
15
16 #endif