Novacoin: add scrypt module source, update documentation
[electrum-server.git] / scrypt / scrypt.h
diff --git a/scrypt/scrypt.h b/scrypt/scrypt.h
new file mode 100644 (file)
index 0000000..694158d
--- /dev/null
@@ -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