Makefile: Fix order of arguments in linker call
[dmsetup-tc.git] / pkcs5.h
blob239f5c0579830f82fe53c0dfe6bace29ffe4fb47
1 #ifndef PKCS5_H
2 #define PKCS5_H
4 #include <gcrypt.h>
6 gcry_err_code_t gcry_pbkdf2(int PRF, const char *P, size_t Plen, const char *S,
7 size_t Slen, unsigned int c, unsigned int dkLen, char *DK);
9 #endif