ReactOS 0.4.16-dev-1133-g947c03e
|
MD4 message digest algorithm (hash function) More...
Go to the source code of this file.
Classes | |
struct | mbedtls_md4_context |
MD4 context structure. More... | |
Macros | |
#define | MBEDTLS_ERR_MD4_HW_ACCEL_FAILED -0x002D |
#define | MBEDTLS_DEPRECATED |
#define | MBEDTLS_DEPRECATED |
Typedefs | |
typedef struct mbedtls_md4_context | mbedtls_md4_context |
MD4 context structure. | |
MD4 message digest algorithm (hash function)
Definition in file md4.h.
#define MBEDTLS_ERR_MD4_HW_ACCEL_FAILED -0x002D |
MD4 context structure.
int mbedtls_internal_md4_process | ( | mbedtls_md4_context * | ctx, |
const unsigned char | data[64] | ||
) |
MD4 process data block (internal use only)
ctx | MD4 context |
data | buffer holding one block of data |
MBEDTLS_DEPRECATED void mbedtls_md4 | ( | const unsigned char * | input, |
size_t | ilen, | ||
unsigned char | output[16] | ||
) |
Output = MD4( input buffer )
input | buffer holding the data |
ilen | length of the input data |
output | MD4 checksum result |
void mbedtls_md4_clone | ( | mbedtls_md4_context * | dst, |
const mbedtls_md4_context * | src | ||
) |
Clone (the state of) an MD4 context.
dst | The destination context |
src | The context to be cloned |
MBEDTLS_DEPRECATED void mbedtls_md4_finish | ( | mbedtls_md4_context * | ctx, |
unsigned char | output[16] | ||
) |
MD4 final digest.
ctx | MD4 context |
output | MD4 checksum result |
int mbedtls_md4_finish_ret | ( | mbedtls_md4_context * | ctx, |
unsigned char | output[16] | ||
) |
MD4 final digest.
ctx | MD4 context |
output | MD4 checksum result |
void mbedtls_md4_free | ( | mbedtls_md4_context * | ctx | ) |
Clear MD4 context.
ctx | MD4 context to be cleared |
void mbedtls_md4_init | ( | mbedtls_md4_context * | ctx | ) |
Initialize MD4 context.
ctx | MD4 context to be initialized |
MBEDTLS_DEPRECATED void mbedtls_md4_process | ( | mbedtls_md4_context * | ctx, |
const unsigned char | data[64] | ||
) |
MD4 process data block (internal use only)
ctx | MD4 context |
data | buffer holding one block of data |
Output = MD4( input buffer )
input | buffer holding the data |
ilen | length of the input data |
output | MD4 checksum result |
MBEDTLS_DEPRECATED void mbedtls_md4_starts | ( | mbedtls_md4_context * | ctx | ) |
MD4 context setup.
ctx | context to be initialized |
int mbedtls_md4_starts_ret | ( | mbedtls_md4_context * | ctx | ) |
MD4 context setup.
ctx | context to be initialized |
MBEDTLS_DEPRECATED void mbedtls_md4_update | ( | mbedtls_md4_context * | ctx, |
const unsigned char * | input, | ||
size_t | ilen | ||
) |
MD4 process buffer.
ctx | MD4 context |
input | buffer holding the data |
ilen | length of the input data |
MD4 process buffer.
ctx | MD4 context |
input | buffer holding the data |
ilen | length of the input data |