Coverage Report

Created: 2026-04-01 06:39

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl33/crypto/idea/i_cfb64.c
Line
Count
Source
1
/*
2
 * Copyright 1995-2021 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
 * IDEA low level APIs are deprecated for public use, but still ok for internal
12
 * use where we're using them to implement the higher level EVP interface, as is
13
 * the case here.
14
 */
15
#include "internal/deprecated.h"
16
17
#include <openssl/idea.h>
18
#include "idea_local.h"
19
20
/*
21
 * The input and output encrypted as though 64bit cfb mode is being used.
22
 * The extra state information to record how much of the 64bit block we have
23
 * used is contained in *num;
24
 */
25
26
void IDEA_cfb64_encrypt(const unsigned char *in, unsigned char *out,
27
    long length, IDEA_KEY_SCHEDULE *schedule,
28
    unsigned char *ivec, int *num, int encrypt)
29
0
{
30
0
    register unsigned long v0, v1, t;
31
0
    register int n = *num;
32
0
    register long l = length;
33
0
    unsigned long ti[2];
34
0
    unsigned char *iv, c, cc;
35
36
0
    if (n < 0) {
37
0
        *num = -1;
38
0
        return;
39
0
    }
40
0
    n = n & 0x07;
41
42
0
    iv = (unsigned char *)ivec;
43
0
    if (encrypt) {
44
0
        while (l--) {
45
0
            if (n == 0) {
46
0
                n2l(iv, v0);
47
0
                ti[0] = v0;
48
0
                n2l(iv, v1);
49
0
                ti[1] = v1;
50
0
                IDEA_encrypt((unsigned long *)ti, schedule);
51
0
                iv = (unsigned char *)ivec;
52
0
                t = ti[0];
53
0
                l2n(t, iv);
54
0
                t = ti[1];
55
0
                l2n(t, iv);
56
0
                iv = (unsigned char *)ivec;
57
0
            }
58
0
            c = *(in++) ^ iv[n];
59
0
            *(out++) = c;
60
0
            iv[n] = c;
61
0
            n = (n + 1) & 0x07;
62
0
        }
63
0
    } else {
64
0
        while (l--) {
65
0
            if (n == 0) {
66
0
                n2l(iv, v0);
67
0
                ti[0] = v0;
68
0
                n2l(iv, v1);
69
0
                ti[1] = v1;
70
0
                IDEA_encrypt((unsigned long *)ti, schedule);
71
0
                iv = (unsigned char *)ivec;
72
0
                t = ti[0];
73
0
                l2n(t, iv);
74
0
                t = ti[1];
75
0
                l2n(t, iv);
76
0
                iv = (unsigned char *)ivec;
77
0
            }
78
0
            cc = *(in++);
79
0
            c = iv[n];
80
0
            iv[n] = cc;
81
0
            *(out++) = c ^ cc;
82
0
            n = (n + 1) & 0x07;
83
0
        }
84
0
    }
85
0
    v0 = v1 = ti[0] = ti[1] = t = c = cc = 0;
86
0
    *num = n;
87
0
}