check
[oweals/gnunet.git] / src / vpn / gnunet-vpn-checksum.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010 Christian Grothoff
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file vpn/gnunet-vpn-checksum.c
23  * @brief
24  * @author Philipp Toelke
25  */
26
27 #include "gnunet-vpn-checksum.h"
28
29 uint32_t calculate_checksum_update(uint32_t sum, uint16_t *hdr, short len) {
30     for(; len >= 2; len -= 2)
31       sum += *(hdr++);
32     if (len == 1)
33       sum += *((unsigned char*)hdr);
34     return sum;
35 }
36
37 uint16_t calculate_checksum_end(uint32_t sum) {
38     while (sum >> 16)
39       sum = (sum >> 16) + (sum & 0xFFFF);
40
41     return ~sum;
42 }
43
44 /**
45  * Calculate the checksum of an IPv4-Header
46  */
47 uint16_t
48 calculate_ip_checksum(uint16_t* hdr, short len) {
49     uint32_t sum = calculate_checksum_update(0, hdr, len);
50     return calculate_checksum_end(sum);
51 }