[BACK]Return to crc32.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/crc32.h between version 1.8.2.6 and 1.9

version 1.8.2.6, 2002/03/08 17:04:42 version 1.9, 2000/12/19 23:17:56
Line 1 
Line 1 
 /*      $OpenBSD$       */  
   
 /*  /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>   * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1992 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland   * Copyright (c) 1992 Tatu Ylonen, Espoo, Finland
  *                    All rights reserved   *                    All rights reserved
  * Functions for computing 32-bit CRC.   * Functions for computing 32-bit CRC.
  *   *
Line 13 
Line 11 
  * called by a name other than "ssh" or "Secure Shell".   * called by a name other than "ssh" or "Secure Shell".
  */   */
   
   /* RCSID("$OpenBSD$"); */
   
 #ifndef CRC32_H  #ifndef CRC32_H
 #define CRC32_H  #define CRC32_H
   
 u_int    ssh_crc32(const u_char *, u_int);  /*
    * This computes a 32 bit CRC of the data in the buffer, and returns the CRC.
    * The polynomial used is 0xedb88320.
    */
   u_int ssh_crc32(const u_char *buf, u_int len);
   
 #endif                          /* CRC32_H */  #endif                          /* CRC32_H */

Legend:
Removed from v.1.8.2.6  
changed lines
  Added in v.1.9