blob: bdabc1b09926358759ffbb8d2be832a52ce5aaac [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Ben Lindstrom92a2e382001-03-05 06:59:27 +00003 * Copyright (c) 1992 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
Damien Miller95def091999-11-25 00:26:21 +11004 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Functions for computing 32-bit CRC.
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Millere4340be2000-09-16 13:29:08 +11007 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000014/* RCSID("$OpenBSD: crc32.h,v 1.12 2001/06/26 17:27:23 markus Exp $"); */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
16#ifndef CRC32_H
17#define CRC32_H
18
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000019u_int ssh_crc32(const u_char *, u_int);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020
Damien Miller95def091999-11-25 00:26:21 +110021#endif /* CRC32_H */