X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/fc1ae6582fa5e199cc9c50dc2297297c1893955c..5f238db203f4ba876cfa8949f87f3f93507c049f:/lib/mdfour.c diff --git a/lib/mdfour.c b/lib/mdfour.c index d8e86322..38123c67 100644 --- a/lib/mdfour.c +++ b/lib/mdfour.c @@ -117,7 +117,7 @@ static void mdfour_tail(unsigned char *in, uint32 n) { unsigned char buf[128]; uint32 M[16]; - extern int remote_version; + extern int protocol_version; /* * Count total number of bits, modulo 2^64 @@ -140,7 +140,7 @@ static void mdfour_tail(unsigned char *in, uint32 n) * of bits modulo 2^64, which was fixed starting with * protocol version 27. */ - if (remote_version >= 27) { + if (protocol_version >= 27) { copy4(buf+60, m->totalN2); } copy64(M, buf); @@ -153,7 +153,7 @@ static void mdfour_tail(unsigned char *in, uint32 n) * of bits modulo 2^64, which was fixed starting with * protocol version 27. */ - if (remote_version >= 27) { + if (protocol_version >= 27) { copy4(buf+124, m->totalN2); } copy64(M, buf); @@ -206,9 +206,11 @@ void mdfour(unsigned char *out, unsigned char *in, int n) } #ifdef TEST_MDFOUR +int protocol_version = 28; + static void file_checksum1(char *fname) { - int fd, i; + int fd, i, was_multiple_of_64 = 1; struct mdfour md; unsigned char buf[64*1024], sum[16]; @@ -222,9 +224,13 @@ static void file_checksum1(char *fname) while (1) { int n = read(fd, buf, sizeof(buf)); - if (n <= 0) break; + if (n <= 0) + break; + was_multiple_of_64 = !(n % 64); mdfour_update(&md, buf, n); } + if (was_multiple_of_64 && protocol_version >= 27) + mdfour_update(&md, buf, 0); close(fd);