node-multi-hashing/scrypt.h

10 lines
275 B
C

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