Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 263 Bytes

pkcs5_pbkdf2.h

File metadata and controls

11 lines (6 loc) · 263 Bytes
 
Dec 18, 2013
Dec 18, 2013
1
2
3
4
5
6
7
8
9
10
#ifndef _INCL_PKCS5_PBKDF2_H_
#define _INCL_PKCS5_PBKDF2_H_
#include <stdint.h>
int pkcs5_pbkdf2(const char *pass, size_t pass_len, const uint8_t *salt, size_t salt_len, uint8_t *key, size_t key_len, unsigned int rounds);
#endif
// end of pkcs5_pbkdf2.h ...