1999-10-27 05:42:43 +02:00
|
|
|
/*
|
2000-04-16 03:18:38 +02:00
|
|
|
*
|
1999-11-24 14:26:21 +01:00
|
|
|
* crc32.h
|
2000-04-16 03:18:38 +02:00
|
|
|
*
|
1999-11-24 14:26:21 +01:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
2000-04-16 03:18:38 +02:00
|
|
|
*
|
1999-11-24 14:26:21 +01:00
|
|
|
* Copyright (c) 1992 Tatu Ylonen, Espoo, Finland
|
|
|
|
* All rights reserved
|
2000-04-16 03:18:38 +02:00
|
|
|
*
|
1999-11-24 14:26:21 +01:00
|
|
|
* Created: Tue Feb 11 14:37:27 1992 ylo
|
2000-04-16 03:18:38 +02:00
|
|
|
*
|
1999-11-24 14:26:21 +01:00
|
|
|
* Functions for computing 32-bit CRC.
|
2000-04-16 03:18:38 +02:00
|
|
|
*
|
1999-11-24 14:26:21 +01:00
|
|
|
*/
|
|
|
|
|
2000-04-16 03:18:38 +02:00
|
|
|
/* RCSID("$Id: crc32.h,v 1.4 2000/04/16 01:18:42 damien Exp $"); */
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#ifndef CRC32_H
|
|
|
|
#define CRC32_H
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* This computes a 32 bit CRC of the data in the buffer, and returns the CRC.
|
|
|
|
* The polynomial used is 0xedb88320.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
unsigned int crc32(const unsigned char *buf, unsigned int len);
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
#endif /* CRC32_H */
|