PIVX Core  5.6.99
P2P Digital Currency
scrypt.h
Go to the documentation of this file.
1 #ifndef PIVX_CRYPTO_SCRYPT_H
2 #define PIVX_CRYPTO_SCRYPT_H
3 
4 
5 #include <stdlib.h>
6 #include <stdint.h>
7 #include <string>
8 
9 void scrypt(const char* pass, unsigned int pLen, const char* salt, unsigned int sLen, char *output, unsigned int N, unsigned int r, unsigned int p, unsigned int dkLen);
10 
11 #endif // PIVX_CRYPTO_SCRYPT_H
void scrypt(const char *pass, unsigned int pLen, const char *salt, unsigned int sLen, char *output, unsigned int N, unsigned int r, unsigned int p, unsigned int dkLen)
Definition: scrypt.cpp:290