My Project
Loading...
Searching...
No Matches
pwdbased.h
Go to the documentation of this file.
1
46int wc_PBKDF1(byte* output, const byte* passwd, int pLen,
47 const byte* salt, int sLen, int iterations, int kLen,
48 int typeH);
49
97int wc_PBKDF2(byte* output, const byte* passwd, int pLen,
98 const byte* salt, int sLen, int iterations, int kLen,
99 int typeH);
100
168int wc_PKCS12_PBKDF(byte* output, const byte* passwd, int pLen,
169 const byte* salt, int sLen, int iterations,
170 int kLen, int typeH, int purpose);
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...
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...
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...