
Functions | |
| WOLFSSL_API void | wc_InitMd4 (Md4 *) |
| This function initializes md4. This is automatically called by wc_Md4Hash. More... | |
| WOLFSSL_API void | wc_Md4Update (Md4 *, const byte *, word32) |
| Can be called to continually hash the provided byte array of length len. More... | |
| WOLFSSL_API void | wc_Md4Final (Md4 *, byte *) |
| Finalizes hashing of data. Result is placed into hash. More... | |
| WOLFSSL_API void wc_InitMd4 | ( | Md4 * | ) |
This function initializes md4. This is automatically called by wc_Md4Hash.
| md4 | pointer to the md4 structure to use for encryption |
Example
| WOLFSSL_API void wc_Md4Final | ( | Md4 * | , |
| byte * | |||
| ) |
Finalizes hashing of data. Result is placed into hash.
| md4 | pointer to the md4 structure to use for encryption |
| hash | Byte array to hold hash value. |
Example
| WOLFSSL_API void wc_Md4Update | ( | Md4 * | , |
| const byte * | , | ||
| word32 | |||
| ) |
Can be called to continually hash the provided byte array of length len.
| md4 | pointer to the md4 structure to use for encryption |
| data | the data to be hashed |
| len | length of data to be hashed |
Example