SEcube
SEcube Open Source Library - Host
pbkdf2.h
1 
7 #pragma once
8 
9 #include <stdint.h>
10 #include <string.h>
11 
12 #include "sha256.h"
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
30  void PBKDF2HmacSha256(
31  const uint8_t *pw, size_t npw,
32  const uint8_t *salt, size_t nsalt,
33  uint32_t iterations,
34  uint8_t *out, size_t nout);
35 
36 #ifdef __cplusplus
37 }
38 #endif