| 21 | #include "rsync.h" |
| 22 | |
| 23 | void 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 | |
| 33 | static void md5_process(md_context *ctx, const uchar data[CSUM_CHUNK]) |
| 34 | { |
no outgoing calls
no test coverage detected