mbed TLS v2.2.1
md2.h
Go to the documentation of this file.
1 
23 #ifndef MBEDTLS_MD2_H
24 #define MBEDTLS_MD2_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 
34 #if !defined(MBEDTLS_MD2_ALT)
35 // Regular implementation
36 //
37 
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
41 
45 typedef struct
46 {
47  unsigned char cksum[16];
48  unsigned char state[48];
49  unsigned char buffer[16];
50  size_t left;
51 }
52 mbedtls_md2_context;
53 
59 void mbedtls_md2_init( mbedtls_md2_context *ctx );
60 
66 void mbedtls_md2_free( mbedtls_md2_context *ctx );
67 
74 void mbedtls_md2_clone( mbedtls_md2_context *dst,
75  const mbedtls_md2_context *src );
76 
82 void mbedtls_md2_starts( mbedtls_md2_context *ctx );
83 
91 void mbedtls_md2_update( mbedtls_md2_context *ctx, const unsigned char *input, size_t ilen );
92 
99 void mbedtls_md2_finish( mbedtls_md2_context *ctx, unsigned char output[16] );
100 
101 #ifdef __cplusplus
102 }
103 #endif
104 
105 #else /* MBEDTLS_MD2_ALT */
106 #include "md2_alt.h"
107 #endif /* MBEDTLS_MD2_ALT */
108 
109 #ifdef __cplusplus
110 extern "C" {
111 #endif
112 
120 void mbedtls_md2( const unsigned char *input, size_t ilen, unsigned char output[16] );
121 
127 int mbedtls_md2_self_test( int verbose );
128 
129 /* Internal use */
130 void mbedtls_md2_process( mbedtls_md2_context *ctx );
131 
132 #ifdef __cplusplus
133 }
134 #endif
135 
136 #endif /* mbedtls_md2.h */
void mbedtls_md2(const unsigned char *input, size_t ilen, unsigned char output[16])
Output = MD2( input buffer )
Configuration options (set of defines)
int mbedtls_md2_self_test(int verbose)
Checkup routine.
void mbedtls_md2_process(mbedtls_md2_context *ctx)