node-multi-hashing/scrypt.h

10 lines
279 B
C

#ifndef SCRYPT_H
#define SCRYPT_H
#include <stdint.h>
void scrypt_1024_1_1_256(const char* input, char* output, uint32_t len);
void scrypt_1024_1_1_256_sp(const char* input, char* output, char* scratchpad, uint32_t len);
#define scrypt_scratchpad_size 131583;
#endif