Mercurial > hg > xemacs-beta
comparison src/md5.c @ 280:7df0dd720c89 r21-0b38
Import from CVS: tag r21-0b38
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:32:22 +0200 |
parents | 6330739388db |
children | 8626e4521993 |
comparison
equal
deleted
inserted
replaced
279:c20b2fb5bb0a | 280:7df0dd720c89 |
---|---|
310 | 310 |
311 static void | 311 static void |
312 md5_process_block (CONST void *buffer, size_t len, struct md5_ctx *ctx) | 312 md5_process_block (CONST void *buffer, size_t len, struct md5_ctx *ctx) |
313 { | 313 { |
314 md5_uint32 correct_words[16]; | 314 md5_uint32 correct_words[16]; |
315 const md5_uint32 *words = buffer; | 315 const md5_uint32 *words = (const md5_uint32 *) buffer; |
316 size_t nwords = len / sizeof (md5_uint32); | 316 size_t nwords = len / sizeof (md5_uint32); |
317 const md5_uint32 *endp = words + nwords; | 317 const md5_uint32 *endp = words + nwords; |
318 md5_uint32 A = ctx->A; | 318 md5_uint32 A = ctx->A; |
319 md5_uint32 B = ctx->B; | 319 md5_uint32 B = ctx->B; |
320 md5_uint32 C = ctx->C; | 320 md5_uint32 C = ctx->C; |