Remove /* foo.c */ comments
[openssl.git] / crypto / cast / c_enc.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57
58 #include <openssl/cast.h>
59 #include "cast_lcl.h"
60
61 void CAST_encrypt(CAST_LONG *data, const CAST_KEY *key)
62 {
63     register CAST_LONG l, r, t;
64     const register CAST_LONG *k;
65
66     k = &(key->data[0]);
67     l = data[0];
68     r = data[1];
69
70     E_CAST(0, k, l, r, +, ^, -);
71     E_CAST(1, k, r, l, ^, -, +);
72     E_CAST(2, k, l, r, -, +, ^);
73     E_CAST(3, k, r, l, +, ^, -);
74     E_CAST(4, k, l, r, ^, -, +);
75     E_CAST(5, k, r, l, -, +, ^);
76     E_CAST(6, k, l, r, +, ^, -);
77     E_CAST(7, k, r, l, ^, -, +);
78     E_CAST(8, k, l, r, -, +, ^);
79     E_CAST(9, k, r, l, +, ^, -);
80     E_CAST(10, k, l, r, ^, -, +);
81     E_CAST(11, k, r, l, -, +, ^);
82     if (!key->short_key) {
83         E_CAST(12, k, l, r, +, ^, -);
84         E_CAST(13, k, r, l, ^, -, +);
85         E_CAST(14, k, l, r, -, +, ^);
86         E_CAST(15, k, r, l, +, ^, -);
87     }
88
89     data[1] = l & 0xffffffffL;
90     data[0] = r & 0xffffffffL;
91 }
92
93 void CAST_decrypt(CAST_LONG *data, const CAST_KEY *key)
94 {
95     register CAST_LONG l, r, t;
96     const register CAST_LONG *k;
97
98     k = &(key->data[0]);
99     l = data[0];
100     r = data[1];
101
102     if (!key->short_key) {
103         E_CAST(15, k, l, r, +, ^, -);
104         E_CAST(14, k, r, l, -, +, ^);
105         E_CAST(13, k, l, r, ^, -, +);
106         E_CAST(12, k, r, l, +, ^, -);
107     }
108     E_CAST(11, k, l, r, -, +, ^);
109     E_CAST(10, k, r, l, ^, -, +);
110     E_CAST(9, k, l, r, +, ^, -);
111     E_CAST(8, k, r, l, -, +, ^);
112     E_CAST(7, k, l, r, ^, -, +);
113     E_CAST(6, k, r, l, +, ^, -);
114     E_CAST(5, k, l, r, -, +, ^);
115     E_CAST(4, k, r, l, ^, -, +);
116     E_CAST(3, k, l, r, +, ^, -);
117     E_CAST(2, k, r, l, -, +, ^);
118     E_CAST(1, k, l, r, ^, -, +);
119     E_CAST(0, k, r, l, +, ^, -);
120
121     data[1] = l & 0xffffffffL;
122     data[0] = r & 0xffffffffL;
123 }
124
125 void CAST_cbc_encrypt(const unsigned char *in, unsigned char *out,
126                       long length, const CAST_KEY *ks, unsigned char *iv,
127                       int enc)
128 {
129     register CAST_LONG tin0, tin1;
130     register CAST_LONG tout0, tout1, xor0, xor1;
131     register long l = length;
132     CAST_LONG tin[2];
133
134     if (enc) {
135         n2l(iv, tout0);
136         n2l(iv, tout1);
137         iv -= 8;
138         for (l -= 8; l >= 0; l -= 8) {
139             n2l(in, tin0);
140             n2l(in, tin1);
141             tin0 ^= tout0;
142             tin1 ^= tout1;
143             tin[0] = tin0;
144             tin[1] = tin1;
145             CAST_encrypt(tin, ks);
146             tout0 = tin[0];
147             tout1 = tin[1];
148             l2n(tout0, out);
149             l2n(tout1, out);
150         }
151         if (l != -8) {
152             n2ln(in, tin0, tin1, l + 8);
153             tin0 ^= tout0;
154             tin1 ^= tout1;
155             tin[0] = tin0;
156             tin[1] = tin1;
157             CAST_encrypt(tin, ks);
158             tout0 = tin[0];
159             tout1 = tin[1];
160             l2n(tout0, out);
161             l2n(tout1, out);
162         }
163         l2n(tout0, iv);
164         l2n(tout1, iv);
165     } else {
166         n2l(iv, xor0);
167         n2l(iv, xor1);
168         iv -= 8;
169         for (l -= 8; l >= 0; l -= 8) {
170             n2l(in, tin0);
171             n2l(in, tin1);
172             tin[0] = tin0;
173             tin[1] = tin1;
174             CAST_decrypt(tin, ks);
175             tout0 = tin[0] ^ xor0;
176             tout1 = tin[1] ^ xor1;
177             l2n(tout0, out);
178             l2n(tout1, out);
179             xor0 = tin0;
180             xor1 = tin1;
181         }
182         if (l != -8) {
183             n2l(in, tin0);
184             n2l(in, tin1);
185             tin[0] = tin0;
186             tin[1] = tin1;
187             CAST_decrypt(tin, ks);
188             tout0 = tin[0] ^ xor0;
189             tout1 = tin[1] ^ xor1;
190             l2nn(tout0, tout1, out, l + 8);
191             xor0 = tin0;
192             xor1 = tin1;
193         }
194         l2n(xor0, iv);
195         l2n(xor1, iv);
196     }
197     tin0 = tin1 = tout0 = tout1 = xor0 = xor1 = 0;
198     tin[0] = tin[1] = 0;
199 }