My Project
Loading...
Searching...
No Matches
pwdbased.h
1
46WOLFSSL_API int wc_PBKDF1(byte* output, const byte* passwd, int pLen,
47 const byte* salt, int sLen, int iterations, int kLen,
48 int typeH);
49
95WOLFSSL_API int wc_PBKDF2(byte* output, const byte* passwd, int pLen,
96 const byte* salt, int sLen, int iterations, int kLen,
97 int typeH);
98
164WOLFSSL_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_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
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_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