1999-10-27 03:42:43 +00:00
|
|
|
/*
|
2000-04-16 01:18:38 +00:00
|
|
|
*
|
1999-11-24 13:26:21 +00:00
|
|
|
* crc32.h
|
2000-04-16 01:18:38 +00:00
|
|
|
*
|
1999-11-24 13:26:21 +00:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
2000-04-16 01:18:38 +00:00
|
|
|
*
|
1999-11-24 13:26:21 +00:00
|
|
|
* Copyright (c) 1992 Tatu Ylonen, Espoo, Finland
|
|
|
|
* All rights reserved
|
2000-04-16 01:18:38 +00:00
|
|
|
*
|
1999-11-24 13:26:21 +00:00
|
|
|
* Created: Tue Feb 11 14:37:27 1992 ylo
|
2000-04-16 01:18:38 +00:00
|
|
|
*
|
1999-11-24 13:26:21 +00:00
|
|
|
* Functions for computing 32-bit CRC.
|
2000-04-16 01:18:38 +00:00
|
|
|
*
|
1999-11-24 13:26:21 +00:00
|
|
|
*/
|
|
|
|
|
2000-06-22 11:32:31 +00:00
|
|
|
/* RCSID("$OpenBSD: crc32.h,v 1.6 2000/06/20 01:39:40 markus Exp $"); */
|
1999-10-27 03:42:43 +00:00
|
|
|
|
|
|
|
#ifndef CRC32_H
|
|
|
|
#define CRC32_H
|
|
|
|
|
1999-11-25 00:54:57 +00: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 03:42:43 +00:00
|
|
|
unsigned int crc32(const unsigned char *buf, unsigned int len);
|
|
|
|
|
1999-11-24 13:26:21 +00:00
|
|
|
#endif /* CRC32_H */
|