1162852Sdes/* $OpenBSD: crc32.h,v 1.15 2006/03/25 22:22:43 djm Exp $ */
292555Sdes
357429Smarkm/*
4113908Sdes * Copyright (c) 2003 Markus Friedl.  All rights reserved.
560573Skris *
6113908Sdes * Redistribution and use in source and binary forms, with or without
7113908Sdes * modification, are permitted provided that the following conditions
8113908Sdes * are met:
9113908Sdes * 1. Redistributions of source code must retain the above copyright
10113908Sdes *    notice, this list of conditions and the following disclaimer.
11113908Sdes * 2. Redistributions in binary form must reproduce the above copyright
12113908Sdes *    notice, this list of conditions and the following disclaimer in the
13113908Sdes *    documentation and/or other materials provided with the distribution.
14113908Sdes *
15113908Sdes * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16113908Sdes * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17113908Sdes * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18113908Sdes * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19113908Sdes * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20113908Sdes * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21113908Sdes * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22113908Sdes * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23113908Sdes * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24113908Sdes * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2557429Smarkm */
2657429Smarkm
27113908Sdes#ifndef SSH_CRC32_H
28113908Sdes#define SSH_CRC32_H
29113908Sdesu_int32_t	 ssh_crc32(const u_char *, u_int32_t);
30113908Sdes#endif
31