node-stratum-pool/python/litecoin_scrypt-master/scrypt.h
Matthew Little 773ef4c9b2 updated
2014-01-09 13:09:57 -05:00

17 lines
291 B
C

#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);
#define scrypt_scratchpad_size 131583;
#ifdef __cplusplus
}
#endif
#endif