mirror of
https://gitlab.com/cryptsetup/cryptsetup.git
synced 2025-12-18 22:30:07 +01:00
git-svn-id: https://cryptsetup.googlecode.com/svn/trunk@3 36d66b0a-2a48-0410-832c-cd162a569da5
15 lines
331 B
C
15 lines
331 B
C
#ifndef INCLUDED_CRYPTSETUP_LUKS_PBKDF_H
|
|
#define INCLUDED_CRYPTSETUP_LUKS_PBKDF_H
|
|
|
|
#include <stddef.h>
|
|
|
|
/* */
|
|
|
|
void PBKDF2_HMAC_SHA1(const char *password, size_t passwordLen,
|
|
const char *salt, size_t saltLen, unsigned int iterations,
|
|
char *dKey, size_t dKeyLen);
|
|
|
|
unsigned int PBKDF2_performance_check();
|
|
|
|
#endif
|