X-Git-Url: https://git.novaco.in/?p=stratum-mining.git;a=blobdiff_plain;f=litecoin_scrypt%2Fscrypt.h;fp=litecoin_scrypt%2Fscrypt.h;h=694158daf9a8ef5d2398ee2c1505804be9d0b558;hp=0000000000000000000000000000000000000000;hb=b5680339cfe87714542796b016226eb455560214;hpb=23ebc8506325ec4b8a60ce3c49cab96ae87c006b diff --git a/litecoin_scrypt/scrypt.h b/litecoin_scrypt/scrypt.h new file mode 100644 index 0000000..694158d --- /dev/null +++ b/litecoin_scrypt/scrypt.h @@ -0,0 +1,16 @@ +#ifndef SCRYPT_H +#define SCRYPT_H + +#ifdef __cplusplus +extern "C" { +#endif + +void scrypt_1024_1_1_256(const char* input, char* output); +void scrypt_1024_1_1_256_sp(const char* input, char* output, char* scratchpad); +const int scrypt_scratchpad_size = 131583; + +#ifdef __cplusplus +} +#endif + +#endif