add PBKDF2

This commit is contained in:
Todd A Ouska
2011-03-28 17:15:14 -07:00
parent 249935d59b
commit 50c8faf7a1
3 changed files with 87 additions and 1 deletions
+2
View File
@@ -36,6 +36,8 @@
int PBKDF1(byte* output, const byte* passwd, int pLen, const byte* salt,
int sLen, int iterations, int kLen, int hashType);
int PBKDF2(byte* output, const byte* passwd, int pLen, const byte* salt,
int sLen, int iterations, int kLen, int hashType);