X-Git-Url: https://git.novaco.in/?p=electrum-server.git;a=blobdiff_plain;f=scrypt%2Fscrypt.h;fp=scrypt%2Fscrypt.h;h=694158daf9a8ef5d2398ee2c1505804be9d0b558;hp=0000000000000000000000000000000000000000;hb=2fd0a9bfa81a22f2789f518d1e3e9d3767ad0d7a;hpb=d0439647dfc60efce32e0a13b0ec02428ba412cf diff --git a/scrypt/scrypt.h b/scrypt/scrypt.h new file mode 100644 index 0000000..694158d --- /dev/null +++ b/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