Add key generation
[iotcloud.git] / version2 / src / C / pbkdf2-sha256.h
1 #ifndef PBKDF2_SHA256_H
2 #define PBKDF2_SHA256_H
3
4 void PKCS5_PBKDF2_HMAC(unsigned char *password, size_t plen,
5                                                                                          unsigned char *salt, size_t slen,
6                                                                                          const unsigned long iteration_count, const unsigned long key_length,
7                                                                                          unsigned char *output);
8
9 #endif