2002-03-18 09:55:03 +00:00
|
|
|
/* $OpenBSD: crc32.h,v 1.13 2002/03/04 17:27:39 stevesk Exp $ */
|
|
|
|
|
2000-02-24 14:29:47 +00:00
|
|
|
/*
|
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
2001-05-04 03:57:05 +00:00
|
|
|
* Copyright (c) 1992 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
2000-02-24 14:29:47 +00:00
|
|
|
* All rights reserved
|
|
|
|
* Functions for computing 32-bit CRC.
|
2000-05-15 04:37:24 +00:00
|
|
|
*
|
2000-09-10 08:31:17 +00:00
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
2000-02-24 14:29:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CRC32_H
|
|
|
|
#define CRC32_H
|
|
|
|
|
2002-03-18 09:55:03 +00:00
|
|
|
u_int ssh_crc32(const u_char *, u_int);
|
2000-02-24 14:29:47 +00:00
|
|
|
|
|
|
|
#endif /* CRC32_H */
|