tagging vde-2 version 2.3.2
[vde.git] / 2.3.2 / src / vde_cryptcab / crc32.h
blob5f824016099face0b420da8fbdb3e9b923fcccb8
1 /*
2 * VDE Cryptcab
3 * Copyright © 2006-2008 Daniele Lacamera
4 * from an idea by Renzo Davoli
6 * Released under the terms of GNU GPL v.2
7 * (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
8 * with the additional exemption that
9 * compiling, linking, and/or using OpenSSL is allowed.
11 * based on implementation by Finn Yannick Jacobs Krzysztof Dabrowski, ElysiuM deeZine
15 #ifndef _CRC32_H
16 #define _CRC32_H
18 void chksum_crc32gentab();
19 unsigned char *crc32(unsigned char *block, unsigned int len);
21 #endif