repo.or.cz
/
rofl0r-kripto.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
do keccak-f when it's necessary to fix duplex construction, sha3 alias removed
[rofl0r-kripto.git]
/
include
/
kripto
/
pbkdf2.h
blob
76847b27f2df70e1eaa14f81ba2b5d6ac77c95ba
1
#ifndef KRIPTO_PBKDF2_H
2
#define KRIPTO_PBKDF2_H
3
4
#include <kripto/mac.h>
5
6
extern
int
kripto_pbkdf2
7
(
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
17
);
18
19
#endif