Coverage Report

Created: 2023-06-08 06:40

/src/openssl111/crypto/idea/i_cbc.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the OpenSSL license (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
#include <openssl/idea.h>
11
#include "idea_local.h"
12
13
void IDEA_cbc_encrypt(const unsigned char *in, unsigned char *out,
14
                      long length, IDEA_KEY_SCHEDULE *ks, unsigned char *iv,
15
                      int encrypt)
16
999
{
17
999
    register unsigned long tin0, tin1;
18
999
    register unsigned long tout0, tout1, xor0, xor1;
19
999
    register long l = length;
20
999
    unsigned long tin[2];
21
22
999
    if (encrypt) {
23
798
        n2l(iv, tout0);
24
798
        n2l(iv, tout1);
25
798
        iv -= 8;
26
4.76k
        for (l -= 8; l >= 0; l -= 8) {
27
3.96k
            n2l(in, tin0);
28
3.96k
            n2l(in, tin1);
29
3.96k
            tin0 ^= tout0;
30
3.96k
            tin1 ^= tout1;
31
3.96k
            tin[0] = tin0;
32
3.96k
            tin[1] = tin1;
33
3.96k
            IDEA_encrypt(tin, ks);
34
3.96k
            tout0 = tin[0];
35
3.96k
            l2n(tout0, out);
36
3.96k
            tout1 = tin[1];
37
3.96k
            l2n(tout1, out);
38
3.96k
        }
39
798
        if (l != -8) {
40
0
            n2ln(in, tin0, tin1, l + 8);
41
0
            tin0 ^= tout0;
42
0
            tin1 ^= tout1;
43
0
            tin[0] = tin0;
44
0
            tin[1] = tin1;
45
0
            IDEA_encrypt(tin, ks);
46
0
            tout0 = tin[0];
47
0
            l2n(tout0, out);
48
0
            tout1 = tin[1];
49
0
            l2n(tout1, out);
50
0
        }
51
798
        l2n(tout0, iv);
52
798
        l2n(tout1, iv);
53
798
    } else {
54
201
        n2l(iv, xor0);
55
201
        n2l(iv, xor1);
56
201
        iv -= 8;
57
39.3k
        for (l -= 8; l >= 0; l -= 8) {
58
39.1k
            n2l(in, tin0);
59
39.1k
            tin[0] = tin0;
60
39.1k
            n2l(in, tin1);
61
39.1k
            tin[1] = tin1;
62
39.1k
            IDEA_encrypt(tin, ks);
63
39.1k
            tout0 = tin[0] ^ xor0;
64
39.1k
            tout1 = tin[1] ^ xor1;
65
39.1k
            l2n(tout0, out);
66
39.1k
            l2n(tout1, out);
67
39.1k
            xor0 = tin0;
68
39.1k
            xor1 = tin1;
69
39.1k
        }
70
201
        if (l != -8) {
71
0
            n2l(in, tin0);
72
0
            tin[0] = tin0;
73
0
            n2l(in, tin1);
74
0
            tin[1] = tin1;
75
0
            IDEA_encrypt(tin, ks);
76
0
            tout0 = tin[0] ^ xor0;
77
0
            tout1 = tin[1] ^ xor1;
78
0
            l2nn(tout0, tout1, out, l + 8);
79
0
            xor0 = tin0;
80
0
            xor1 = tin1;
81
0
        }
82
201
        l2n(xor0, iv);
83
201
        l2n(xor1, iv);
84
201
    }
85
999
    tin0 = tin1 = tout0 = tout1 = xor0 = xor1 = 0;
86
999
    tin[0] = tin[1] = 0;
87
999
}
88
89
void IDEA_encrypt(unsigned long *d, IDEA_KEY_SCHEDULE *key)
90
43.1k
{
91
43.1k
    register IDEA_INT *p;
92
43.1k
    register unsigned long x1, x2, x3, x4, t0, t1, ul;
93
94
43.1k
    x2 = d[0];
95
43.1k
    x1 = (x2 >> 16);
96
43.1k
    x4 = d[1];
97
43.1k
    x3 = (x4 >> 16);
98
99
43.1k
    p = &(key->data[0][0]);
100
101
43.1k
    E_IDEA(0);
102
43.1k
    E_IDEA(1);
103
43.1k
    E_IDEA(2);
104
43.1k
    E_IDEA(3);
105
43.1k
    E_IDEA(4);
106
43.1k
    E_IDEA(5);
107
43.1k
    E_IDEA(6);
108
43.1k
    E_IDEA(7);
109
110
43.1k
    x1 &= 0xffff;
111
43.1k
    idea_mul(x1, x1, *p, ul);
112
43.1k
    p++;
113
114
43.1k
    t0 = x3 + *(p++);
115
43.1k
    t1 = x2 + *(p++);
116
117
43.1k
    x4 &= 0xffff;
118
43.1k
    idea_mul(x4, x4, *p, ul);
119
120
43.1k
    d[0] = (t0 & 0xffff) | ((x1 & 0xffff) << 16);
121
43.1k
    d[1] = (x4 & 0xffff) | ((t1 & 0xffff) << 16);
122
43.1k
}