MCPcopy Create free account
hub / github.com/Vector35/debugger / MDPrint

Function MDPrint

test/src/md5/md5driver.c:219–225  ·  view source on GitHub ↗

Prints a message digest in hexadecimal. */

(digest)

Source from the content-addressed store, hash-verified

217/* Prints a message digest in hexadecimal.
218*/
219static void MDPrint (digest)
220unsigned char digest[16];
221{
222 unsigned int i;
223 for (i = 0; i < 16; i++)
224 printf ("%02x", digest[i]);
225}
226

Callers 4

MDStringFunction · 0.85
MDTimeTrialFunction · 0.85
MDFileFunction · 0.85
MDFilterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected