Data Structures | |
struct | apr_md4_ctx_t |
Defines | |
#define | APR_MD4_DIGESTSIZE 16 |
Typedefs | |
typedef apr_md4_ctx_t | apr_md4_ctx_t |
Functions | |
apr_status_t | apr_md4_init (apr_md4_ctx_t *context) |
apr_status_t | apr_md4_set_xlate (apr_md4_ctx_t *context, apr_xlate_t *xlate) |
apr_status_t | apr_md4_update (apr_md4_ctx_t *context, const unsigned char *input, apr_size_t inputLen) |
apr_status_t | apr_md4_final (unsigned char digest[APR_MD4_DIGESTSIZE], apr_md4_ctx_t *context) |
apr_status_t | apr_md4 (unsigned char digest[APR_MD4_DIGESTSIZE], const unsigned char *input, apr_size_t inputLen) |
|
The digestsize for MD4 |
|
|
|
MD4 digest computation
|
|
MD4 finalization. Ends an MD4 message-digest operation, writing the message digest and zeroing the context
|
|
MD4 Initialize. Begins an MD4 operation, writing a new context.
|
|
MDr4 translation setup. Provides the APR translation handle to be used for translating the content before calculating the digest.
|
|
MD4 block update operation. Continue an MD4 message-digest operation, processing another message block, and updating the context.
|