Initial commit
[platform/upstream/ccid.git] / src / openct / checksum.h
1 /*
2     checksum.h: header file checksum.c
3     Copyright (C) 2004   Ludovic Rousseau
4
5     This library is free software; you can redistribute it and/or
6     modify it under the terms of the GNU Lesser General Public
7     License as published by the Free Software Foundation; either
8     version 2.1 of the License, or (at your option) any later version.
9
10     This library is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13     Lesser General Public License for more details.
14
15         You should have received a copy of the GNU Lesser General Public License
16         along with this library; if not, write to the Free Software Foundation,
17         Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef __CHECKSUM_H__
21 #define __CHECKSUM_H__
22
23 #include <config.h>
24 #ifdef HAVE_STDINT_H
25 #include <stdint.h>
26 #endif
27 #ifdef HAVE_UNISTD_H
28 #include <unistd.h>
29 #endif
30
31 extern unsigned int     csum_lrc_compute(const uint8_t *, size_t, unsigned char *);
32 extern unsigned int     csum_crc_compute(const uint8_t *, size_t, unsigned char *);
33
34 #endif
35