Initial checking of what was revision 56 on http://luks.endorphin.org/svn/cryptsetup
[platform/upstream/cryptsetup.git] / luks / pbkdf.h
1 #ifndef INCLUDED_CRYPTSETUP_LUKS_PBKDF_H
2 #define INCLUDED_CRYPTSETUP_LUKS_PBKDF_H
3
4 #include <stddef.h>
5
6 /* */
7
8 void PBKDF2_HMAC_SHA1(const char *password, size_t passwordLen, 
9                       const char *salt, size_t saltLen, unsigned int iterations, 
10                       char *dKey, size_t dKeyLen);
11
12 unsigned int PBKDF2_performance_check();
13
14 #endif