46 WOLFSSL_API
int wc_PBKDF1(byte* output,
const byte* passwd,
int pLen,
47 const byte* salt,
int sLen,
int iterations,
int kLen,
95 WOLFSSL_API
int wc_PBKDF2(byte* output,
const byte* passwd,
int pLen,
96 const byte* salt,
int sLen,
int iterations,
int kLen,
164 WOLFSSL_API
int wc_PKCS12_PBKDF(byte* output,
const byte* passwd,
int pLen,
165 const byte* salt,
int sLen,
int iterations,
166 int kLen,
int typeH,
int purpose);
WOLFSSL_API int wc_PBKDF1(byte *output, const byte *passwd, int pLen, const byte *salt, int sLen, int iterations, int kLen, int typeH)
This function implements the Password Based Key Derivation Function 1 (PBKDF1), converting an input p...
Definition: pwdbased.c:163
WOLFSSL_API int wc_PKCS12_PBKDF(byte *output, const byte *passwd, int pLen, const byte *salt, int sLen, int iterations, int kLen, int typeH, int purpose)
This function implements the Password Based Key Derivation Function (PBKDF) described in RFC 7292 App...
Definition: pwdbased.c:341
WOLFSSL_API int wc_PBKDF2(byte *output, const byte *passwd, int pLen, const byte *salt, int sLen, int iterations, int kLen, int typeH)
This function implements the Password Based Key Derivation Function 2 (PBKDF2), converting an input p...
Definition: pwdbased.c:273