Source
71
71
md5_word_t abcd[4]; /* digest buffer */
72
72
md5_byte_t buf[64]; /* accumulate block */
73
73
} md5_state_t;
74
74
75
75
#ifdef __cplusplus
76
76
extern "C"
77
77
{
78
78
#endif
79
79
80
80
/* Initialize the algorithm. */
81
-
void md5_init(md5_state_t *pms);
81
+
void zbx_md5_init(md5_state_t *pms);
82
82
83
83
/* Append a string to the message. */
84
-
void md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes);
84
+
void zbx_md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes);
85
85
86
86
/* Finish the message and return the digest. */
87
-
void md5_finish(md5_state_t *pms, md5_byte_t digest[16]);
87
+
void zbx_md5_finish(md5_state_t *pms, md5_byte_t digest[16]);
88
88
89
89
#ifdef __cplusplus
90
90
} /* end extern "C" */
91
91
#endif
92
92
93
93
#endif /* md5_INCLUDED */