Coverage Report

Created: 2025-12-31 06:58

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl33/crypto/des/des_enc.c
Line
Count
Source
1
/*
2
 * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
/*
11
 * DES low level APIs are deprecated for public use, but still ok for internal
12
 * use.
13
 */
14
#include "internal/deprecated.h"
15
16
#include <openssl/crypto.h>
17
#include "des_local.h"
18
#include "spr.h"
19
20
void DES_encrypt1(DES_LONG *data, DES_key_schedule *ks, int enc)
21
0
{
22
0
    register DES_LONG l, r, t, u;
23
0
    register DES_LONG *s;
24
25
0
    r = data[0];
26
0
    l = data[1];
27
28
0
    IP(r, l);
29
    /*
30
     * Things have been modified so that the initial rotate is done outside
31
     * the loop.  This required the DES_SPtrans values in sp.h to be rotated
32
     * 1 bit to the right. One perl script later and things have a 5% speed
33
     * up on a sparc2. Thanks to Richard Outerbridge for pointing this out.
34
     */
35
    /* clear the top bits on machines with 8byte longs */
36
    /* shift left by 2 */
37
0
    r = ROTATE(r, 29) & 0xffffffffL;
38
0
    l = ROTATE(l, 29) & 0xffffffffL;
39
40
0
    s = ks->ks->deslong;
41
    /*
42
     * I don't know if it is worth the effort of loop unrolling the inner
43
     * loop
44
     */
45
0
    if (enc) {
46
0
        D_ENCRYPT(l, r, 0); /* 1 */
47
0
        D_ENCRYPT(r, l, 2); /* 2 */
48
0
        D_ENCRYPT(l, r, 4); /* 3 */
49
0
        D_ENCRYPT(r, l, 6); /* 4 */
50
0
        D_ENCRYPT(l, r, 8); /* 5 */
51
0
        D_ENCRYPT(r, l, 10); /* 6 */
52
0
        D_ENCRYPT(l, r, 12); /* 7 */
53
0
        D_ENCRYPT(r, l, 14); /* 8 */
54
0
        D_ENCRYPT(l, r, 16); /* 9 */
55
0
        D_ENCRYPT(r, l, 18); /* 10 */
56
0
        D_ENCRYPT(l, r, 20); /* 11 */
57
0
        D_ENCRYPT(r, l, 22); /* 12 */
58
0
        D_ENCRYPT(l, r, 24); /* 13 */
59
0
        D_ENCRYPT(r, l, 26); /* 14 */
60
0
        D_ENCRYPT(l, r, 28); /* 15 */
61
0
        D_ENCRYPT(r, l, 30); /* 16 */
62
0
    } else {
63
0
        D_ENCRYPT(l, r, 30); /* 16 */
64
0
        D_ENCRYPT(r, l, 28); /* 15 */
65
0
        D_ENCRYPT(l, r, 26); /* 14 */
66
0
        D_ENCRYPT(r, l, 24); /* 13 */
67
0
        D_ENCRYPT(l, r, 22); /* 12 */
68
0
        D_ENCRYPT(r, l, 20); /* 11 */
69
0
        D_ENCRYPT(l, r, 18); /* 10 */
70
0
        D_ENCRYPT(r, l, 16); /* 9 */
71
0
        D_ENCRYPT(l, r, 14); /* 8 */
72
0
        D_ENCRYPT(r, l, 12); /* 7 */
73
0
        D_ENCRYPT(l, r, 10); /* 6 */
74
0
        D_ENCRYPT(r, l, 8); /* 5 */
75
0
        D_ENCRYPT(l, r, 6); /* 4 */
76
0
        D_ENCRYPT(r, l, 4); /* 3 */
77
0
        D_ENCRYPT(l, r, 2); /* 2 */
78
0
        D_ENCRYPT(r, l, 0); /* 1 */
79
0
    }
80
81
    /* rotate and clear the top bits on machines with 8byte longs */
82
0
    l = ROTATE(l, 3) & 0xffffffffL;
83
0
    r = ROTATE(r, 3) & 0xffffffffL;
84
85
0
    FP(r, l);
86
0
    data[0] = l;
87
0
    data[1] = r;
88
0
    l = r = t = u = 0;
89
0
}
90
91
void DES_encrypt2(DES_LONG *data, DES_key_schedule *ks, int enc)
92
3.48M
{
93
3.48M
    register DES_LONG l, r, t, u;
94
3.48M
    register DES_LONG *s;
95
96
3.48M
    r = data[0];
97
3.48M
    l = data[1];
98
99
    /*
100
     * Things have been modified so that the initial rotate is done outside
101
     * the loop.  This required the DES_SPtrans values in sp.h to be rotated
102
     * 1 bit to the right. One perl script later and things have a 5% speed
103
     * up on a sparc2. Thanks to Richard Outerbridge for pointing this out.
104
     */
105
    /* clear the top bits on machines with 8byte longs */
106
3.48M
    r = ROTATE(r, 29) & 0xffffffffL;
107
3.48M
    l = ROTATE(l, 29) & 0xffffffffL;
108
109
3.48M
    s = ks->ks->deslong;
110
    /*
111
     * I don't know if it is worth the effort of loop unrolling the inner
112
     * loop
113
     */
114
3.48M
    if (enc) {
115
1.39M
        D_ENCRYPT(l, r, 0); /* 1 */
116
1.39M
        D_ENCRYPT(r, l, 2); /* 2 */
117
1.39M
        D_ENCRYPT(l, r, 4); /* 3 */
118
1.39M
        D_ENCRYPT(r, l, 6); /* 4 */
119
1.39M
        D_ENCRYPT(l, r, 8); /* 5 */
120
1.39M
        D_ENCRYPT(r, l, 10); /* 6 */
121
1.39M
        D_ENCRYPT(l, r, 12); /* 7 */
122
1.39M
        D_ENCRYPT(r, l, 14); /* 8 */
123
1.39M
        D_ENCRYPT(l, r, 16); /* 9 */
124
1.39M
        D_ENCRYPT(r, l, 18); /* 10 */
125
1.39M
        D_ENCRYPT(l, r, 20); /* 11 */
126
1.39M
        D_ENCRYPT(r, l, 22); /* 12 */
127
1.39M
        D_ENCRYPT(l, r, 24); /* 13 */
128
1.39M
        D_ENCRYPT(r, l, 26); /* 14 */
129
1.39M
        D_ENCRYPT(l, r, 28); /* 15 */
130
1.39M
        D_ENCRYPT(r, l, 30); /* 16 */
131
2.08M
    } else {
132
2.08M
        D_ENCRYPT(l, r, 30); /* 16 */
133
2.08M
        D_ENCRYPT(r, l, 28); /* 15 */
134
2.08M
        D_ENCRYPT(l, r, 26); /* 14 */
135
2.08M
        D_ENCRYPT(r, l, 24); /* 13 */
136
2.08M
        D_ENCRYPT(l, r, 22); /* 12 */
137
2.08M
        D_ENCRYPT(r, l, 20); /* 11 */
138
2.08M
        D_ENCRYPT(l, r, 18); /* 10 */
139
2.08M
        D_ENCRYPT(r, l, 16); /* 9 */
140
2.08M
        D_ENCRYPT(l, r, 14); /* 8 */
141
2.08M
        D_ENCRYPT(r, l, 12); /* 7 */
142
2.08M
        D_ENCRYPT(l, r, 10); /* 6 */
143
2.08M
        D_ENCRYPT(r, l, 8); /* 5 */
144
2.08M
        D_ENCRYPT(l, r, 6); /* 4 */
145
2.08M
        D_ENCRYPT(r, l, 4); /* 3 */
146
2.08M
        D_ENCRYPT(l, r, 2); /* 2 */
147
2.08M
        D_ENCRYPT(r, l, 0); /* 1 */
148
2.08M
    }
149
    /* rotate and clear the top bits on machines with 8byte longs */
150
3.48M
    data[0] = ROTATE(l, 3) & 0xffffffffL;
151
3.48M
    data[1] = ROTATE(r, 3) & 0xffffffffL;
152
3.48M
    l = r = t = u = 0;
153
3.48M
}
154
155
void DES_encrypt3(DES_LONG *data, DES_key_schedule *ks1,
156
    DES_key_schedule *ks2, DES_key_schedule *ks3)
157
233k
{
158
233k
    register DES_LONG l, r;
159
160
233k
    l = data[0];
161
233k
    r = data[1];
162
233k
    IP(l, r);
163
233k
    data[0] = l;
164
233k
    data[1] = r;
165
233k
    DES_encrypt2((DES_LONG *)data, ks1, DES_ENCRYPT);
166
233k
    DES_encrypt2((DES_LONG *)data, ks2, DES_DECRYPT);
167
233k
    DES_encrypt2((DES_LONG *)data, ks3, DES_ENCRYPT);
168
233k
    l = data[0];
169
233k
    r = data[1];
170
233k
    FP(r, l);
171
233k
    data[0] = l;
172
233k
    data[1] = r;
173
233k
}
174
175
void DES_decrypt3(DES_LONG *data, DES_key_schedule *ks1,
176
    DES_key_schedule *ks2, DES_key_schedule *ks3)
177
926k
{
178
926k
    register DES_LONG l, r;
179
180
926k
    l = data[0];
181
926k
    r = data[1];
182
926k
    IP(l, r);
183
926k
    data[0] = l;
184
926k
    data[1] = r;
185
926k
    DES_encrypt2((DES_LONG *)data, ks3, DES_DECRYPT);
186
926k
    DES_encrypt2((DES_LONG *)data, ks2, DES_ENCRYPT);
187
926k
    DES_encrypt2((DES_LONG *)data, ks1, DES_DECRYPT);
188
926k
    l = data[0];
189
926k
    r = data[1];
190
926k
    FP(r, l);
191
926k
    data[0] = l;
192
926k
    data[1] = r;
193
926k
}
194
195
#ifndef DES_DEFAULT_OPTIONS
196
197
#undef CBC_ENC_C__DONT_UPDATE_IV
198
/* clang-format off */
199
# include "ncbc_enc.c"          /* DES_ncbc_encrypt */
200
/* clang-format on */
201
202
void DES_ede3_cbc_encrypt(const unsigned char *input, unsigned char *output,
203
    long length, DES_key_schedule *ks1,
204
    DES_key_schedule *ks2, DES_key_schedule *ks3,
205
    DES_cblock *ivec, int enc)
206
105k
{
207
105k
    register DES_LONG tin0, tin1;
208
105k
    register DES_LONG tout0, tout1, xor0, xor1;
209
105k
    register const unsigned char *in;
210
105k
    unsigned char *out;
211
105k
    register long l = length;
212
105k
    DES_LONG tin[2];
213
105k
    unsigned char *iv;
214
215
105k
    in = input;
216
105k
    out = output;
217
105k
    iv = &(*ivec)[0];
218
219
105k
    if (enc) {
220
4.30k
        c2l(iv, tout0);
221
4.30k
        c2l(iv, tout1);
222
237k
        for (l -= 8; l >= 0; l -= 8) {
223
233k
            c2l(in, tin0);
224
233k
            c2l(in, tin1);
225
233k
            tin0 ^= tout0;
226
233k
            tin1 ^= tout1;
227
228
233k
            tin[0] = tin0;
229
233k
            tin[1] = tin1;
230
233k
            DES_encrypt3((DES_LONG *)tin, ks1, ks2, ks3);
231
233k
            tout0 = tin[0];
232
233k
            tout1 = tin[1];
233
234
233k
            l2c(tout0, out);
235
233k
            l2c(tout1, out);
236
233k
        }
237
4.30k
        if (l != -8) {
238
0
            c2ln(in, tin0, tin1, l + 8);
239
0
            tin0 ^= tout0;
240
0
            tin1 ^= tout1;
241
242
0
            tin[0] = tin0;
243
0
            tin[1] = tin1;
244
0
            DES_encrypt3((DES_LONG *)tin, ks1, ks2, ks3);
245
0
            tout0 = tin[0];
246
0
            tout1 = tin[1];
247
248
0
            l2c(tout0, out);
249
0
            l2c(tout1, out);
250
0
        }
251
4.30k
        iv = &(*ivec)[0];
252
4.30k
        l2c(tout0, iv);
253
4.30k
        l2c(tout1, iv);
254
101k
    } else {
255
101k
        register DES_LONG t0, t1;
256
257
101k
        c2l(iv, xor0);
258
101k
        c2l(iv, xor1);
259
1.02M
        for (l -= 8; l >= 0; l -= 8) {
260
926k
            c2l(in, tin0);
261
926k
            c2l(in, tin1);
262
263
926k
            t0 = tin0;
264
926k
            t1 = tin1;
265
266
926k
            tin[0] = tin0;
267
926k
            tin[1] = tin1;
268
926k
            DES_decrypt3((DES_LONG *)tin, ks1, ks2, ks3);
269
926k
            tout0 = tin[0];
270
926k
            tout1 = tin[1];
271
272
926k
            tout0 ^= xor0;
273
926k
            tout1 ^= xor1;
274
926k
            l2c(tout0, out);
275
926k
            l2c(tout1, out);
276
926k
            xor0 = t0;
277
926k
            xor1 = t1;
278
926k
        }
279
101k
        if (l != -8) {
280
0
            c2l(in, tin0);
281
0
            c2l(in, tin1);
282
283
0
            t0 = tin0;
284
0
            t1 = tin1;
285
286
0
            tin[0] = tin0;
287
0
            tin[1] = tin1;
288
0
            DES_decrypt3((DES_LONG *)tin, ks1, ks2, ks3);
289
0
            tout0 = tin[0];
290
0
            tout1 = tin[1];
291
292
0
            tout0 ^= xor0;
293
0
            tout1 ^= xor1;
294
0
            l2cn(tout0, tout1, out, l + 8);
295
0
            xor0 = t0;
296
0
            xor1 = t1;
297
0
        }
298
299
101k
        iv = &(*ivec)[0];
300
101k
        l2c(xor0, iv);
301
101k
        l2c(xor1, iv);
302
101k
    }
303
105k
    tin0 = tin1 = tout0 = tout1 = xor0 = xor1 = 0;
304
105k
    tin[0] = tin[1] = 0;
305
105k
}
306
307
#endif /* DES_DEFAULT_OPTIONS */