Coverage Report

Created: 2024-06-28 06:39

/src/nettle-with-libgmp/camellia-absorb.c
Line
Count
Source
1
/* camellia-absorb.c
2
3
   Final key setup processing for the camellia block cipher.
4
5
   Copyright (C) 2006,2007 NTT
6
   (Nippon Telegraph and Telephone Corporation).
7
8
   Copyright (C) 2010 Niels Möller
9
10
   This file is part of GNU Nettle.
11
12
   GNU Nettle is free software: you can redistribute it and/or
13
   modify it under the terms of either:
14
15
     * the GNU Lesser General Public License as published by the Free
16
       Software Foundation; either version 3 of the License, or (at your
17
       option) any later version.
18
19
   or
20
21
     * the GNU General Public License as published by the Free
22
       Software Foundation; either version 2 of the License, or (at your
23
       option) any later version.
24
25
   or both in parallel, as here.
26
27
   GNU Nettle is distributed in the hope that it will be useful,
28
   but WITHOUT ANY WARRANTY; without even the implied warranty of
29
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
30
   General Public License for more details.
31
32
   You should have received copies of the GNU General Public License and
33
   the GNU Lesser General Public License along with this program.  If
34
   not, see http://www.gnu.org/licenses/.
35
*/
36
37
/*
38
 * Algorithm Specification 
39
 *  http://info.isl.ntt.co.jp/crypt/eng/camellia/specifications.html
40
 */
41
42
/* Based on camellia.c ver 1.2.0, see
43
   http://info.isl.ntt.co.jp/crypt/eng/camellia/dl/camellia-LGPL-1.2.0.tar.gz.
44
 */
45
46
#if HAVE_CONFIG_H
47
# include "config.h"
48
#endif
49
50
/* For CHAR_BIT, needed by HAVE_NATIVE_64_BIT */
51
#include <limits.h>
52
53
#include "camellia-internal.h"
54
55
#include "macros.h"
56
57
void
58
_nettle_camellia_absorb(unsigned nkeys, uint64_t *dst, uint64_t *subkey)
59
688
{
60
688
  uint64_t kw2, kw4;
61
688
  uint32_t dw, tl, tr;
62
688
  unsigned i;
63
  
64
  /* At this point, the subkey array contains the subkeys as described
65
     in the spec, 26 for short keys and 34 for large keys. */
66
67
  /* absorb kw2 to other subkeys */
68
688
  kw2 = subkey[1];
69
70
688
  subkey[3] ^= kw2;
71
688
  subkey[5] ^= kw2;
72
688
  subkey[7] ^= kw2;
73
2.45k
  for (i = 8; i < nkeys; i += 8)
74
1.76k
    {
75
      /* FIXME: gcc for x86_32 is smart enough to fetch the 32 low bits
76
   and xor the result into the 32 high bits, but it still generates
77
   worse code than for explicit 32-bit operations. */
78
1.76k
      kw2 ^= (kw2 & ~subkey[i+1]) << 32;
79
1.76k
      dw = (kw2 & subkey[i+1]) >> 32; kw2 ^= ROTL32(1, dw); 
80
81
1.76k
      subkey[i+3] ^= kw2;
82
1.76k
      subkey[i+5] ^= kw2;
83
1.76k
      subkey[i+7] ^= kw2;
84
1.76k
    }
85
688
  subkey[i] ^= kw2;
86
  
87
  /* absorb kw4 to other subkeys */  
88
688
  kw4 = subkey[nkeys + 1];
89
90
2.45k
  for (i = nkeys - 8; i > 0; i -= 8)
91
1.76k
    {
92
1.76k
      subkey[i+6] ^= kw4;
93
1.76k
      subkey[i+4] ^= kw4;
94
1.76k
      subkey[i+2] ^= kw4;
95
1.76k
      kw4 ^= (kw4 & ~subkey[i]) << 32;
96
1.76k
      dw = (kw4 & subkey[i]) >> 32; kw4 ^= ROTL32(1, dw);      
97
1.76k
    }
98
99
688
  subkey[6] ^= kw4;
100
688
  subkey[4] ^= kw4;
101
688
  subkey[2] ^= kw4;
102
688
  subkey[0] ^= kw4;
103
104
  /* key XOR is end of F-function */
105
688
  dst[0] = subkey[0] ^ subkey[2];
106
688
  dst[1] = subkey[3];
107
108
688
  dst[2] = subkey[2] ^ subkey[4];
109
688
  dst[3] = subkey[3] ^ subkey[5];
110
688
  dst[4] = subkey[4] ^ subkey[6];
111
688
  dst[5] = subkey[5] ^ subkey[7];
112
113
2.45k
  for (i = 8; i < nkeys; i += 8)
114
1.76k
    {
115
1.76k
      tl = (subkey[i+2] >> 32) ^ (subkey[i+2] & ~subkey[i]);
116
1.76k
      dw = tl & (subkey[i] >> 32);
117
1.76k
      tr = subkey[i+2] ^ ROTL32(1, dw);
118
1.76k
      dst[i-2] = subkey[i-2] ^ ( ((uint64_t) tl << 32) | tr);
119
120
1.76k
      dst[i-1] = subkey[i];
121
1.76k
      dst[i] = subkey[i+1];
122
123
1.76k
      tl = (subkey[i-1] >> 32) ^ (subkey[i-1] & ~subkey[i+1]);
124
1.76k
      dw = tl & (subkey[i+1] >> 32);
125
1.76k
      tr = subkey[i-1] ^ ROTL32(1, dw);
126
1.76k
      dst[i+1] = subkey[i+3] ^ ( ((uint64_t) tl << 32) | tr);
127
128
1.76k
      dst[i+2] = subkey[i+2] ^ subkey[i+4];
129
1.76k
      dst[i+3] = subkey[i+3] ^ subkey[i+5];
130
1.76k
      dst[i+4] = subkey[i+4] ^ subkey[i+6];
131
1.76k
      dst[i+5] = subkey[i+5] ^ subkey[i+7];
132
1.76k
    }
133
688
  dst[i-2] = subkey[i-2];
134
688
  dst[i-1] = subkey[i] ^ subkey[i-1];
135
136
#if !HAVE_NATIVE_64_BIT
137
  for (i = 0; i < nkeys; i += 8)
138
    {
139
      /* apply the inverse of the last half of F-function */
140
      CAMELLIA_F_HALF_INV(dst[i+1]);
141
      CAMELLIA_F_HALF_INV(dst[i+2]);
142
      CAMELLIA_F_HALF_INV(dst[i+3]);
143
      CAMELLIA_F_HALF_INV(dst[i+4]);
144
      CAMELLIA_F_HALF_INV(dst[i+5]);
145
      CAMELLIA_F_HALF_INV(dst[i+6]);
146
    }
147
#endif
148
  
149
688
}