do keccak-f when it's necessary to fix duplex construction, sha3 alias removed
[rofl0r-kripto.git] / include / kripto / pbkdf2.h
blob76847b27f2df70e1eaa14f81ba2b5d6ac77c95ba
1 #ifndef KRIPTO_PBKDF2_H
2 #define KRIPTO_PBKDF2_H
4 #include <kripto/mac.h>
6 extern int kripto_pbkdf2
8 const kripto_mac_desc *mac,
9 unsigned int mac_rounds,
10 unsigned int iter,
11 const void *pass,
12 unsigned int pass_len,
13 const void *salt,
14 unsigned int salt_len,
15 void *out,
16 size_t out_len
19 #endif