1 #ifndef MY_MD5_INCLUDED
2 #define MY_MD5_INCLUDED
21 #define MD5_HASH_SIZE 16
37 static inline void array_to_hex(
char *
to,
const unsigned char *str, uint len)
39 const unsigned char *str_end= str + len;
40 for (; str != str_end; ++str)
42 *to++= _dig_vec_lower[((uchar) *str) >> 4];
43 *to++= _dig_vec_lower[((uchar) *str) & 0x0F];