File Coverage

src/symcipher/aes_ct_dec.c
Criterion Covered Total %
statement 0 86 0.0
branch 0 6 0.0
condition n/a
subroutine n/a
pod n/a
total 0 92 0.0


line stmt bran cond sub pod time code
1             /*
2             * Copyright (c) 2016 Thomas Pornin
3             *
4             * Permission is hereby granted, free of charge, to any person obtaining
5             * a copy of this software and associated documentation files (the
6             * "Software"), to deal in the Software without restriction, including
7             * without limitation the rights to use, copy, modify, merge, publish,
8             * distribute, sublicense, and/or sell copies of the Software, and to
9             * permit persons to whom the Software is furnished to do so, subject to
10             * the following conditions:
11             *
12             * The above copyright notice and this permission notice shall be
13             * included in all copies or substantial portions of the Software.
14             *
15             * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16             * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17             * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18             * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19             * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20             * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21             * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22             * SOFTWARE.
23             */
24              
25             #include "inner.h"
26              
27             /* see inner.h */
28             void
29 0           br_aes_ct_bitslice_invSbox(uint32_t *q)
30             {
31             /*
32             * AES S-box is:
33             * S(x) = A(I(x)) ^ 0x63
34             * where I() is inversion in GF(256), and A() is a linear
35             * transform (0 is formally defined to be its own inverse).
36             * Since inversion is an involution, the inverse S-box can be
37             * computed from the S-box as:
38             * iS(x) = B(S(B(x ^ 0x63)) ^ 0x63)
39             * where B() is the inverse of A(). Indeed, for any y in GF(256):
40             * iS(S(y)) = B(A(I(B(A(I(y)) ^ 0x63 ^ 0x63))) ^ 0x63 ^ 0x63) = y
41             *
42             * Note: we reuse the implementation of the forward S-box,
43             * instead of duplicating it here, so that total code size is
44             * lower. By merging the B() transforms into the S-box circuit
45             * we could make faster CBC decryption, but CBC decryption is
46             * already quite faster than CBC encryption because we can
47             * process two blocks in parallel.
48             */
49             uint32_t q0, q1, q2, q3, q4, q5, q6, q7;
50              
51 0           q0 = ~q[0];
52 0           q1 = ~q[1];
53 0           q2 = q[2];
54 0           q3 = q[3];
55 0           q4 = q[4];
56 0           q5 = ~q[5];
57 0           q6 = ~q[6];
58 0           q7 = q[7];
59 0           q[7] = q1 ^ q4 ^ q6;
60 0           q[6] = q0 ^ q3 ^ q5;
61 0           q[5] = q7 ^ q2 ^ q4;
62 0           q[4] = q6 ^ q1 ^ q3;
63 0           q[3] = q5 ^ q0 ^ q2;
64 0           q[2] = q4 ^ q7 ^ q1;
65 0           q[1] = q3 ^ q6 ^ q0;
66 0           q[0] = q2 ^ q5 ^ q7;
67              
68 0           br_aes_ct_bitslice_Sbox(q);
69              
70 0           q0 = ~q[0];
71 0           q1 = ~q[1];
72 0           q2 = q[2];
73 0           q3 = q[3];
74 0           q4 = q[4];
75 0           q5 = ~q[5];
76 0           q6 = ~q[6];
77 0           q7 = q[7];
78 0           q[7] = q1 ^ q4 ^ q6;
79 0           q[6] = q0 ^ q3 ^ q5;
80 0           q[5] = q7 ^ q2 ^ q4;
81 0           q[4] = q6 ^ q1 ^ q3;
82 0           q[3] = q5 ^ q0 ^ q2;
83 0           q[2] = q4 ^ q7 ^ q1;
84 0           q[1] = q3 ^ q6 ^ q0;
85 0           q[0] = q2 ^ q5 ^ q7;
86 0           }
87              
88             static void
89 0           add_round_key(uint32_t *q, const uint32_t *sk)
90             {
91             int i;
92              
93 0 0         for (i = 0; i < 8; i ++) {
94 0           q[i] ^= sk[i];
95             }
96 0           }
97              
98             static void
99 0           inv_shift_rows(uint32_t *q)
100             {
101             int i;
102              
103 0 0         for (i = 0; i < 8; i ++) {
104             uint32_t x;
105              
106 0           x = q[i];
107 0           q[i] = (x & 0x000000FF)
108 0           | ((x & 0x00003F00) << 2) | ((x & 0x0000C000) >> 6)
109 0           | ((x & 0x000F0000) << 4) | ((x & 0x00F00000) >> 4)
110 0           | ((x & 0x03000000) << 6) | ((x & 0xFC000000) >> 2);
111             }
112 0           }
113              
114             static inline uint32_t
115 0           rotr16(uint32_t x)
116             {
117 0           return (x << 16) | (x >> 16);
118             }
119              
120             static void
121 0           inv_mix_columns(uint32_t *q)
122             {
123             uint32_t q0, q1, q2, q3, q4, q5, q6, q7;
124             uint32_t r0, r1, r2, r3, r4, r5, r6, r7;
125              
126 0           q0 = q[0];
127 0           q1 = q[1];
128 0           q2 = q[2];
129 0           q3 = q[3];
130 0           q4 = q[4];
131 0           q5 = q[5];
132 0           q6 = q[6];
133 0           q7 = q[7];
134 0           r0 = (q0 >> 8) | (q0 << 24);
135 0           r1 = (q1 >> 8) | (q1 << 24);
136 0           r2 = (q2 >> 8) | (q2 << 24);
137 0           r3 = (q3 >> 8) | (q3 << 24);
138 0           r4 = (q4 >> 8) | (q4 << 24);
139 0           r5 = (q5 >> 8) | (q5 << 24);
140 0           r6 = (q6 >> 8) | (q6 << 24);
141 0           r7 = (q7 >> 8) | (q7 << 24);
142              
143 0           q[0] = q5 ^ q6 ^ q7 ^ r0 ^ r5 ^ r7 ^ rotr16(q0 ^ q5 ^ q6 ^ r0 ^ r5);
144 0           q[1] = q0 ^ q5 ^ r0 ^ r1 ^ r5 ^ r6 ^ r7 ^ rotr16(q1 ^ q5 ^ q7 ^ r1 ^ r5 ^ r6);
145 0           q[2] = q0 ^ q1 ^ q6 ^ r1 ^ r2 ^ r6 ^ r7 ^ rotr16(q0 ^ q2 ^ q6 ^ r2 ^ r6 ^ r7);
146 0           q[3] = q0 ^ q1 ^ q2 ^ q5 ^ q6 ^ r0 ^ r2 ^ r3 ^ r5 ^ rotr16(q0 ^ q1 ^ q3 ^ q5 ^ q6 ^ q7 ^ r0 ^ r3 ^ r5 ^ r7);
147 0           q[4] = q1 ^ q2 ^ q3 ^ q5 ^ r1 ^ r3 ^ r4 ^ r5 ^ r6 ^ r7 ^ rotr16(q1 ^ q2 ^ q4 ^ q5 ^ q7 ^ r1 ^ r4 ^ r5 ^ r6);
148 0           q[5] = q2 ^ q3 ^ q4 ^ q6 ^ r2 ^ r4 ^ r5 ^ r6 ^ r7 ^ rotr16(q2 ^ q3 ^ q5 ^ q6 ^ r2 ^ r5 ^ r6 ^ r7);
149 0           q[6] = q3 ^ q4 ^ q5 ^ q7 ^ r3 ^ r5 ^ r6 ^ r7 ^ rotr16(q3 ^ q4 ^ q6 ^ q7 ^ r3 ^ r6 ^ r7);
150 0           q[7] = q4 ^ q5 ^ q6 ^ r4 ^ r6 ^ r7 ^ rotr16(q4 ^ q5 ^ q7 ^ r4 ^ r7);
151 0           }
152              
153             /* see inner.h */
154             void
155 0           br_aes_ct_bitslice_decrypt(unsigned num_rounds,
156             const uint32_t *skey, uint32_t *q)
157             {
158             unsigned u;
159              
160 0           add_round_key(q, skey + (num_rounds << 3));
161 0 0         for (u = num_rounds - 1; u > 0; u --) {
162 0           inv_shift_rows(q);
163 0           br_aes_ct_bitslice_invSbox(q);
164 0           add_round_key(q, skey + (u << 3));
165 0           inv_mix_columns(q);
166             }
167 0           inv_shift_rows(q);
168 0           br_aes_ct_bitslice_invSbox(q);
169 0           add_round_key(q, skey);
170 0           }