Diff for /embedaddon/rsync/lib/mdfour.c between versions 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2016/11/01 09:54:32 version 1.1.1.3, 2021/03/17 00:32:36
Line 4 Line 4
  * An implementation of MD4 designed for use in the SMB authentication protocol.   * An implementation of MD4 designed for use in the SMB authentication protocol.
  *   *
  * Copyright (C) 1997-1998 Andrew Tridgell   * Copyright (C) 1997-1998 Andrew Tridgell
 * Copyright (C) 2005-2015 Wayne Davison * Copyright (C) 2005-2020 Wayne Davison
  *    * 
  * This program is free software; you can redistribute it and/or modify   * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by   * it under the terms of the GNU General Public License as published by
Line 193  void mdfour_result(md_context *md, uchar digest[MD4_DI Line 193  void mdfour_result(md_context *md, uchar digest[MD4_DI
         copy4(digest+12, m->D);          copy4(digest+12, m->D);
 }  }
   
   #ifdef TEST_MDFOUR
   
 void mdfour(uchar digest[MD4_DIGEST_LEN], uchar *in, int length)  void mdfour(uchar digest[MD4_DIGEST_LEN], uchar *in, int length)
 {  {
         md_context md;          md_context md;
Line 201  void mdfour(uchar digest[MD4_DIGEST_LEN], uchar *in, i Line 203  void mdfour(uchar digest[MD4_DIGEST_LEN], uchar *in, i
         mdfour_result(&md, digest);          mdfour_result(&md, digest);
 }  }
   
 #ifdef TEST_MDFOUR  
 int protocol_version = 28;  int protocol_version = 28;
   
 static void file_checksum1(char *fname)  static void file_checksum1(char *fname)

Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>