Correct PPTP server firewall rules chain.
[tomato/davidwu.git] / release / src / router / nettle / umac-nh.c
blob837590a0cd15b162e787bbc2d5f47555bf1f5d59
1 /* umac-nh.c
2 */
4 /* nettle, low-level cryptographics library
6 * Copyright (C) 2013 Niels Möller
8 * The nettle library is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Lesser General Public License as published by
10 * the Free Software Foundation; either version 2.1 of the License, or (at your
11 * option) any later version.
13 * The nettle library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
16 * License for more details.
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with the nettle library; see the file COPYING.LIB. If not, write to
20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21 * MA 02111-1301, USA.
24 #if HAVE_CONFIG_H
25 # include "config.h"
26 #endif
28 #include <assert.h>
30 #include "umac.h"
31 #include "macros.h"
33 uint64_t
34 _umac_nh (const uint32_t *key, unsigned length, const uint8_t *msg)
36 uint64_t y;
38 assert (length > 0);
39 assert (length <= 1024);
40 assert (length % 32 == 0);
41 for (y = 0; length > 0; length -= 32, msg += 32, key += 8)
43 uint32_t a, b;
44 a = LE_READ_UINT32 (msg) + key[0];
45 b = LE_READ_UINT32 (msg + 16) + key[4];
46 y += (uint64_t) a * b;
47 a = LE_READ_UINT32 (msg + 4) + key[1];
48 b = LE_READ_UINT32 (msg + 20) + key[5];
49 y += (uint64_t) a * b;
50 a = LE_READ_UINT32 (msg + 8) + key[2];
51 b = LE_READ_UINT32 (msg + 24) + key[6];
52 y += (uint64_t) a * b;
53 a = LE_READ_UINT32 (msg + 12) + key[3];
54 b = LE_READ_UINT32 (msg + 28) + key[7];
55 y += (uint64_t) a * b;
58 return y;