Add scrypt+sha512 key derivation method.
[novacoin.git] / src / scrypt.h
index 2d2112d..17afd85 100644 (file)
@@ -7,6 +7,8 @@
 #include "util.h"
 #include "net.h"
 
+uint256 scrypt_salted_multiround_hash(const void* input, size_t inputlen, const void* salt, size_t saltlen, const unsigned int nRounds);
+uint256 scrypt_salted_hash(const void* input, size_t inputlen, const void* salt, size_t saltlen);
 uint256 scrypt_hash(const void* input, size_t inputlen);
 uint256 scrypt_blockhash(const void* input);