scrypt SSE2
[novacoin.git] / src / scrypt.h
index 9a648d3..3c9e3bd 100644 (file)
@@ -7,6 +7,12 @@
 #include "util.h"
 #include "net.h"
 
+#define SCRYPT_BUFFER_SIZE (131072 + 63)
+
 uint256 scrypt_blockhash(const uint8_t* input);
 
+#ifdef USE_SSE2
+void scrypt_detect_sse2();
+#endif
+
 #endif // SCRYPT_MINE_H