MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / MD5_Init

Function MD5_Init

lib/mdflib/mdflib/src/cryptoutil.cpp:157–165  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

155}
156
157void MD5_Init(MD5_CTX *ctx) {
158 ctx->a = 0x67452301;
159 ctx->b = 0xefcdab89;
160 ctx->c = 0x98badcfe;
161 ctx->d = 0x10325476;
162
163 ctx->lo = 0;
164 ctx->hi = 0;
165}
166
167void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size) {
168 MD5_u32 saved_lo;

Callers 1

CreateMd5FileChecksumFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected