File: checksum.h

package info (click to toggle)
libepsilon 0.9.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,168 kB
  • ctags: 1,205
  • sloc: ansic: 11,329; sh: 9,321; perl: 936; xml: 86; makefile: 84
file content (77 lines) | stat: -rw-r--r-- 2,086 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
 * $Id: checksum.h,v 1.15 2010/02/05 23:50:22 simakov Exp $
 *
 * EPSILON - wavelet image compression library.
 * Copyright (C) 2006-2010 Alexander Simakov, <xander@entropyware.info>
 *
 * This file is part of EPSILON
 *
 * EPSILON is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * EPSILON is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with EPSILON.  If not, see <http://www.gnu.org/licenses/>.
 *
 * http://epsilon-project.sourceforge.net
 */

/** \file
 *
 *  \brief Checksum calculation
 *
 *  This file contains routines for CRC-32 and ADLER-32 checksum
 *  calculation. At the moment program uses only CRC-32 algorithm.
 *
 *  \section References
 *
 *  <a href="http://www.ross.net/crc/">A Painless Guide to CRC Error Detection Algorithms</a><br>
 *  <a href="http://en.wikipedia.org/wiki/CRC32">Wikipedia: CRC-32</a><br>
 *  <a href="http://en.wikipedia.org/wiki/Adler-32">Wikipedia: ADLER-32</a> */

#ifndef __CHECKSUM_H__
#define __CHECKSUM_H__

#ifdef __cplusplus
extern "C" {
#endif

/** \addtogroup checksum Checksum calculation */
/*@{*/

#include <common.h>
#include <epsilon.h>

/** Compute ADLER-32 checksum
 *
 *  This function computes ADLER-32 checksum.
 *
 *  \param data Data to sum
 *  \param length Data length
 *
 *  \return Checksum */
crc32_t epsilon_adler32(unsigned char *data, int length);

/** Compute CRC-32 checksum
 *
 *  This function computes CRC-32 checksum.
 *
 *  \param data Data to sum
 *  \param length Data length
 *
 *  \return Checksum */
crc32_t epsilon_crc32(unsigned char *data, int length);

/*@}*/

#ifdef __cplusplus
}
#endif

#endif /* __CHECKSUM_H__ */