MCPcopy Create free account
hub / github.com/RsyncProject/rsync / get_md5

Function get_md5

lib/md5.c:229–235  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

227#ifdef TEST_MD5 /* { */
228
229void get_md5(uchar *out, const uchar *input, int n)
230{
231 md_context ctx;
232 md5_begin(&ctx);
233 md5_update(&ctx, input, n);
234 md5_result(&ctx, out);
235}
236
237#include <stdlib.h>
238#include <stdio.h>

Callers 1

mainFunction · 0.85

Calls 3

md5_beginFunction · 0.85
md5_updateFunction · 0.85
md5_resultFunction · 0.85

Tested by

no test coverage detected