mbed TLS v2.2.0
md4.h
Go to the documentation of this file.
1 
23 #ifndef MBEDTLS_MD4_H
24 #define MBEDTLS_MD4_H
25 
26 #if !defined(MBEDTLS_CONFIG_FILE)
27 #include "config.h"
28 #else
29 #include MBEDTLS_CONFIG_FILE
30 #endif
31 
32 #include <stddef.h>
33 #include <stdint.h>
34 
35 #if !defined(MBEDTLS_MD4_ALT)
36 // Regular implementation
37 //
38 
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42 
46 typedef struct
47 {
48  uint32_t total[2];
49  uint32_t state[4];
50  unsigned char buffer[64];
51 }
53 
60 
67 
75  const mbedtls_md4_context *src );
76 
83 
91 void mbedtls_md4_update( mbedtls_md4_context *ctx, const unsigned char *input, size_t ilen );
92 
99 void mbedtls_md4_finish( mbedtls_md4_context *ctx, unsigned char output[16] );
100 
101 #ifdef __cplusplus
102 }
103 #endif
104 
105 #else /* MBEDTLS_MD4_ALT */
106 #include "md4_alt.h"
107 #endif /* MBEDTLS_MD4_ALT */
108 
109 #ifdef __cplusplus
110 extern "C" {
111 #endif
112 
120 void mbedtls_md4( const unsigned char *input, size_t ilen, unsigned char output[16] );
121 
127 int mbedtls_md4_self_test( int verbose );
128 
129 /* Internal use */
130 void mbedtls_md4_process( mbedtls_md4_context *ctx, const unsigned char data[64] );
131 
132 #ifdef __cplusplus
133 }
134 #endif
135 
136 #endif /* mbedtls_md4.h */
void mbedtls_md4(const unsigned char *input, size_t ilen, unsigned char output[16])
Output = MD4( input buffer )
int mbedtls_md4_self_test(int verbose)
Checkup routine.
void mbedtls_md4_update(mbedtls_md4_context *ctx, const unsigned char *input, size_t ilen)
MD4 process buffer.
void mbedtls_md4_finish(mbedtls_md4_context *ctx, unsigned char output[16])
MD4 final digest.
Compatibility names (set of defines)
void mbedtls_md4_clone(mbedtls_md4_context *dst, const mbedtls_md4_context *src)
Clone (the state of) an MD4 context.
void mbedtls_md4_free(mbedtls_md4_context *ctx)
Clear MD4 context.
MD4 context structure.
Definition: md4.h:46
void mbedtls_md4_starts(mbedtls_md4_context *ctx)
MD4 context setup.
void mbedtls_md4_init(mbedtls_md4_context *ctx)
Initialize MD4 context.
void mbedtls_md4_process(mbedtls_md4_context *ctx, const unsigned char data[64])