Get MD5 digested ASCII string
- Parameters:
-
| data | source object |
| nbytes | size of data |
- Returns:
- malloced 32+1 bytes digested ASCII string which is terminated by NULL character
char *md5str = qHashMd5Str((void*)"hello", 5);
printf("%s\n", md5str);
free(md5str);
Definition at line 85 of file qHash.c.