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

Function md5_begin

lib/md5.c:23–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21#include "rsync.h"
22
23void md5_begin(md_context *ctx)
24{
25 ctx->A = 0x67452301;
26 ctx->B = 0xEFCDAB89;
27 ctx->C = 0x98BADCFE;
28 ctx->D = 0x10325476;
29
30 ctx->totalN = ctx->totalN2 = 0;
31}
32
33static void md5_process(md_context *ctx, const uchar data[CSUM_CHUNK])
34{

Callers 5

get_checksum2Function · 0.85
file_checksumFunction · 0.85
sum_initFunction · 0.85
get_md5Function · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected