Imported Upstream version 2.4
[platform/upstream/nettle.git] / serpent-internal.h
1 /* serpent-internal-h
2  *
3  * The serpent block cipher.
4  *
5  * For more details on this algorithm, see the Serpent website at
6  * http://www.cl.cam.ac.uk/~rja14/serpent.html
7  */
8
9 /* nettle, low-level cryptographics library
10  *
11  * Copyright (C) 2011  Niels Möller
12  * Copyright (C) 2010, 2011  Simon Josefsson
13  * Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
14  *  
15  * The nettle library is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU Lesser General Public License as published by
17  * the Free Software Foundation; either version 2.1 of the License, or (at your
18  * option) any later version.
19  * 
20  * The nettle library is distributed in the hope that it will be useful, but
21  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
22  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
23  * License for more details.
24  * 
25  * You should have received a copy of the GNU Lesser General Public License
26  * along with the nettle library; see the file COPYING.LIB.  If not, write to
27  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
28  * MA 02111-1307, USA.
29  */
30
31 /* This file is derived from cipher/serpent.c in Libgcrypt v1.4.6.
32    The adaption to Nettle was made by Simon Josefsson on 2010-12-07
33    with final touches on 2011-05-30.  Changes include replacing
34    libgcrypt with nettle in the license template, renaming
35    serpent_context to serpent_ctx, renaming u32 to uint32_t, removing
36    libgcrypt stubs and selftests, modifying entry function prototypes,
37    using FOR_BLOCKS to iterate through data in encrypt/decrypt, using
38    LE_READ_UINT32 and LE_WRITE_UINT32 to access data in
39    encrypt/decrypt, and running indent on the code. */
40
41 #ifndef NETTLE_SERPENT_INTERNAL_H_INCLUDED
42 #define NETTLE_SERPENT_INTERNAL_H_INCLUDED
43
44 /* FIXME: Unify ROL macros used here, in camellia.c and cast128.c. */
45 #define ROL32(x,n) ((((x))<<(n)) | (((x))>>(32-(n))))
46
47 #define KEYXOR(x0,x1,x2,x3, subkey)                    \
48   do {                                                 \
49     (x0) ^= (subkey)[0];                               \
50     (x1) ^= (subkey)[1];                               \
51     (x2) ^= (subkey)[2];                               \
52     (x3) ^= (subkey)[3];                               \
53   } while (0)
54
55 #if HAVE_NATIVE_64_BIT
56 /* Operate independently on both halves of a 64-bit word. */
57 #define ROL64(x,n) \
58   (((x) << (n) & ~(((1L << (n))-1) << 32)) \
59    |(((x) >> (32-(n))) & ~(((1L << (32-(n)))-1) << (n))))
60
61 #define KEYXOR64(x0,x1,x2,x3, subkey)                  \
62   do {                                                 \
63     uint64_t _sk;                                      \
64     _sk = (subkey)[0]; _sk |= _sk << 32; (x0) ^= _sk;    \
65     _sk = (subkey)[1]; _sk |= _sk << 32; (x1) ^= _sk;    \
66     _sk = (subkey)[2]; _sk |= _sk << 32; (x2) ^= _sk;    \
67     _sk = (subkey)[3]; _sk |= _sk << 32; (x3) ^= _sk;    \
68   } while (0)
69
70 #define RSHIFT64(x,n) \
71   ( ((x) << (n)) & ~(((1L << n) - 1) << 32))
72 #endif /* HAVE_NATIVE_64_BIT */
73
74 #endif /* NETTLE_SERPENT_INTERNAL_H_INCLUDED */
75