/src/openssl32/crypto/rc5/rc5_enc.c
Line | Count | Source (jump to first uncovered line) |
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 | | * RC5 low level APIs are deprecated for public use, but still ok for internal |
12 | | * use. |
13 | | */ |
14 | | #include "internal/deprecated.h" |
15 | | |
16 | | #include <stdio.h> |
17 | | #include <openssl/rc5.h> |
18 | | #include "rc5_local.h" |
19 | | |
20 | | void RC5_32_cbc_encrypt(const unsigned char *in, unsigned char *out, |
21 | | long length, RC5_32_KEY *ks, unsigned char *iv, |
22 | | int encrypt) |
23 | 0 | { |
24 | 0 | register unsigned long tin0, tin1; |
25 | 0 | register unsigned long tout0, tout1, xor0, xor1; |
26 | 0 | register long l = length; |
27 | 0 | unsigned long tin[2]; |
28 | |
|
29 | 0 | if (encrypt) { |
30 | 0 | c2l(iv, tout0); |
31 | 0 | c2l(iv, tout1); |
32 | 0 | iv -= 8; |
33 | 0 | for (l -= 8; l >= 0; l -= 8) { |
34 | 0 | c2l(in, tin0); |
35 | 0 | c2l(in, tin1); |
36 | 0 | tin0 ^= tout0; |
37 | 0 | tin1 ^= tout1; |
38 | 0 | tin[0] = tin0; |
39 | 0 | tin[1] = tin1; |
40 | 0 | RC5_32_encrypt(tin, ks); |
41 | 0 | tout0 = tin[0]; |
42 | 0 | l2c(tout0, out); |
43 | 0 | tout1 = tin[1]; |
44 | 0 | l2c(tout1, out); |
45 | 0 | } |
46 | 0 | if (l != -8) { |
47 | 0 | c2ln(in, tin0, tin1, l + 8); |
48 | 0 | tin0 ^= tout0; |
49 | 0 | tin1 ^= tout1; |
50 | 0 | tin[0] = tin0; |
51 | 0 | tin[1] = tin1; |
52 | 0 | RC5_32_encrypt(tin, ks); |
53 | 0 | tout0 = tin[0]; |
54 | 0 | l2c(tout0, out); |
55 | 0 | tout1 = tin[1]; |
56 | 0 | l2c(tout1, out); |
57 | 0 | } |
58 | 0 | l2c(tout0, iv); |
59 | 0 | l2c(tout1, iv); |
60 | 0 | } else { |
61 | 0 | c2l(iv, xor0); |
62 | 0 | c2l(iv, xor1); |
63 | 0 | iv -= 8; |
64 | 0 | for (l -= 8; l >= 0; l -= 8) { |
65 | 0 | c2l(in, tin0); |
66 | 0 | tin[0] = tin0; |
67 | 0 | c2l(in, tin1); |
68 | 0 | tin[1] = tin1; |
69 | 0 | RC5_32_decrypt(tin, ks); |
70 | 0 | tout0 = tin[0] ^ xor0; |
71 | 0 | tout1 = tin[1] ^ xor1; |
72 | 0 | l2c(tout0, out); |
73 | 0 | l2c(tout1, out); |
74 | 0 | xor0 = tin0; |
75 | 0 | xor1 = tin1; |
76 | 0 | } |
77 | 0 | if (l != -8) { |
78 | 0 | c2l(in, tin0); |
79 | 0 | tin[0] = tin0; |
80 | 0 | c2l(in, tin1); |
81 | 0 | tin[1] = tin1; |
82 | 0 | RC5_32_decrypt(tin, ks); |
83 | 0 | tout0 = tin[0] ^ xor0; |
84 | 0 | tout1 = tin[1] ^ xor1; |
85 | 0 | l2cn(tout0, tout1, out, l + 8); |
86 | 0 | xor0 = tin0; |
87 | 0 | xor1 = tin1; |
88 | 0 | } |
89 | 0 | l2c(xor0, iv); |
90 | 0 | l2c(xor1, iv); |
91 | 0 | } |
92 | 0 | tin0 = tin1 = tout0 = tout1 = xor0 = xor1 = 0; |
93 | 0 | tin[0] = tin[1] = 0; |
94 | 0 | } |
95 | | |
96 | | void RC5_32_encrypt(unsigned long *d, RC5_32_KEY *key) |
97 | 0 | { |
98 | 0 | RC5_32_INT a, b, *s; |
99 | |
|
100 | 0 | s = key->data; |
101 | |
|
102 | 0 | a = d[0] + s[0]; |
103 | 0 | b = d[1] + s[1]; |
104 | 0 | E_RC5_32(a, b, s, 2); |
105 | 0 | E_RC5_32(a, b, s, 4); |
106 | 0 | E_RC5_32(a, b, s, 6); |
107 | 0 | E_RC5_32(a, b, s, 8); |
108 | 0 | E_RC5_32(a, b, s, 10); |
109 | 0 | E_RC5_32(a, b, s, 12); |
110 | 0 | E_RC5_32(a, b, s, 14); |
111 | 0 | E_RC5_32(a, b, s, 16); |
112 | 0 | if (key->rounds == 12) { |
113 | 0 | E_RC5_32(a, b, s, 18); |
114 | 0 | E_RC5_32(a, b, s, 20); |
115 | 0 | E_RC5_32(a, b, s, 22); |
116 | 0 | E_RC5_32(a, b, s, 24); |
117 | 0 | } else if (key->rounds == 16) { |
118 | | /* Do a full expansion to avoid a jump */ |
119 | 0 | E_RC5_32(a, b, s, 18); |
120 | 0 | E_RC5_32(a, b, s, 20); |
121 | 0 | E_RC5_32(a, b, s, 22); |
122 | 0 | E_RC5_32(a, b, s, 24); |
123 | 0 | E_RC5_32(a, b, s, 26); |
124 | 0 | E_RC5_32(a, b, s, 28); |
125 | 0 | E_RC5_32(a, b, s, 30); |
126 | 0 | E_RC5_32(a, b, s, 32); |
127 | 0 | } |
128 | 0 | d[0] = a; |
129 | 0 | d[1] = b; |
130 | 0 | } |
131 | | |
132 | | void RC5_32_decrypt(unsigned long *d, RC5_32_KEY *key) |
133 | 0 | { |
134 | 0 | RC5_32_INT a, b, *s; |
135 | |
|
136 | 0 | s = key->data; |
137 | |
|
138 | 0 | a = d[0]; |
139 | 0 | b = d[1]; |
140 | 0 | if (key->rounds == 16) { |
141 | 0 | D_RC5_32(a, b, s, 32); |
142 | 0 | D_RC5_32(a, b, s, 30); |
143 | 0 | D_RC5_32(a, b, s, 28); |
144 | 0 | D_RC5_32(a, b, s, 26); |
145 | | /* Do a full expansion to avoid a jump */ |
146 | 0 | D_RC5_32(a, b, s, 24); |
147 | 0 | D_RC5_32(a, b, s, 22); |
148 | 0 | D_RC5_32(a, b, s, 20); |
149 | 0 | D_RC5_32(a, b, s, 18); |
150 | 0 | } else if (key->rounds == 12) { |
151 | 0 | D_RC5_32(a, b, s, 24); |
152 | 0 | D_RC5_32(a, b, s, 22); |
153 | 0 | D_RC5_32(a, b, s, 20); |
154 | 0 | D_RC5_32(a, b, s, 18); |
155 | 0 | } |
156 | 0 | D_RC5_32(a, b, s, 16); |
157 | 0 | D_RC5_32(a, b, s, 14); |
158 | 0 | D_RC5_32(a, b, s, 12); |
159 | 0 | D_RC5_32(a, b, s, 10); |
160 | 0 | D_RC5_32(a, b, s, 8); |
161 | 0 | D_RC5_32(a, b, s, 6); |
162 | 0 | D_RC5_32(a, b, s, 4); |
163 | 0 | D_RC5_32(a, b, s, 2); |
164 | 0 | d[0] = a - s[0]; |
165 | 0 | d[1] = b - s[1]; |
166 | 0 | } |