mbed TLS v2.2.0
md5.h
Go to the documentation of this file.
1 
23 #ifndef MBEDTLS_MD5_H
24 #define MBEDTLS_MD5_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_MD5_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_md5_context *src );
76 
83 
91 void mbedtls_md5_update( mbedtls_md5_context *ctx, const unsigned char *input, size_t ilen );
92 
99 void mbedtls_md5_finish( mbedtls_md5_context *ctx, unsigned char output[16] );
100 
101 /* Internal use */
102 void mbedtls_md5_process( mbedtls_md5_context *ctx, const unsigned char data[64] );
103 
104 #ifdef __cplusplus
105 }
106 #endif
107 
108 #else /* MBEDTLS_MD5_ALT */
109 #include "md5_alt.h"
110 #endif /* MBEDTLS_MD5_ALT */
111 
112 #ifdef __cplusplus
113 extern "C" {
114 #endif
115 
123 void mbedtls_md5( const unsigned char *input, size_t ilen, unsigned char output[16] );
124 
130 int mbedtls_md5_self_test( int verbose );
131 
132 #ifdef __cplusplus
133 }
134 #endif
135 
136 #endif /* mbedtls_md5.h */
void mbedtls_md5(const unsigned char *input, size_t ilen, unsigned char output[16])
Output = MD5( input buffer )
Compatibility names (set of defines)
void mbedtls_md5_init(mbedtls_md5_context *ctx)
Initialize MD5 context.
void mbedtls_md5_clone(mbedtls_md5_context *dst, const mbedtls_md5_context *src)
Clone (the state of) an MD5 context.
void mbedtls_md5_free(mbedtls_md5_context *ctx)
Clear MD5 context.
void mbedtls_md5_update(mbedtls_md5_context *ctx, const unsigned char *input, size_t ilen)
MD5 process buffer.
void mbedtls_md5_starts(mbedtls_md5_context *ctx)
MD5 context setup.
MD5 context structure.
Definition: md5.h:46
int mbedtls_md5_self_test(int verbose)
Checkup routine.
void mbedtls_md5_finish(mbedtls_md5_context *ctx, unsigned char output[16])
MD5 final digest.
void mbedtls_md5_process(mbedtls_md5_context *ctx, const unsigned char data[64])