Revision 18759,
703 bytes
checked in by zacheiss, 22 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r18758,
which included commits to RCS files with non-trunk default branches.
|
Line | |
---|
1 | /* $OpenBSD: crc32.h,v 1.13 2002/03/04 17:27:39 stevesk Exp $ */ |
---|
2 | |
---|
3 | /* |
---|
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
---|
5 | * Copyright (c) 1992 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
---|
6 | * All rights reserved |
---|
7 | * Functions for computing 32-bit CRC. |
---|
8 | * |
---|
9 | * As far as I am concerned, the code I have written for this software |
---|
10 | * can be used freely for any purpose. Any derived versions of this |
---|
11 | * software must be clearly marked as such, and if the derived work is |
---|
12 | * incompatible with the protocol description in the RFC file, it must be |
---|
13 | * called by a name other than "ssh" or "Secure Shell". |
---|
14 | */ |
---|
15 | |
---|
16 | #ifndef CRC32_H |
---|
17 | #define CRC32_H |
---|
18 | |
---|
19 | u_int ssh_crc32(const u_char *, u_int); |
---|
20 | |
---|
21 | #endif /* CRC32_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.