5cdcc64a672c944cc62a517504f8bd8931bf4dac
[openssl.git] / crypto / idea / i_cbc.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/idea.h>
59 #include "idea_lcl.h"
60
61 void IDEA_cbc_encrypt(const unsigned char *in, unsigned char *out,
62                       long length, IDEA_KEY_SCHEDULE *ks, unsigned char *iv,
63                       int encrypt)
64 {
65     register unsigned long tin0, tin1;
66     register unsigned long tout0, tout1, xor0, xor1;
67     register long l = length;
68     unsigned long tin[2];
69
70     if (encrypt) {
71         n2l(iv, tout0);
72         n2l(iv, tout1);
73         iv -= 8;
74         for (l -= 8; l >= 0; l -= 8) {
75             n2l(in, tin0);
76             n2l(in, tin1);
77             tin0 ^= tout0;
78             tin1 ^= tout1;
79             tin[0] = tin0;
80             tin[1] = tin1;
81             IDEA_encrypt(tin, ks);
82             tout0 = tin[0];
83             l2n(tout0, out);
84             tout1 = tin[1];
85             l2n(tout1, out);
86         }
87         if (l != -8) {
88             n2ln(in, tin0, tin1, l + 8);
89             tin0 ^= tout0;
90             tin1 ^= tout1;
91             tin[0] = tin0;
92             tin[1] = tin1;
93             IDEA_encrypt(tin, ks);
94             tout0 = tin[0];
95             l2n(tout0, out);
96             tout1 = tin[1];
97             l2n(tout1, out);
98         }
99         l2n(tout0, iv);
100         l2n(tout1, iv);
101     } else {
102         n2l(iv, xor0);
103         n2l(iv, xor1);
104         iv -= 8;
105         for (l -= 8; l >= 0; l -= 8) {
106             n2l(in, tin0);
107             tin[0] = tin0;
108             n2l(in, tin1);
109             tin[1] = tin1;
110             IDEA_encrypt(tin, ks);
111             tout0 = tin[0] ^ xor0;
112             tout1 = tin[1] ^ xor1;
113             l2n(tout0, out);
114             l2n(tout1, out);
115             xor0 = tin0;
116             xor1 = tin1;
117         }
118         if (l != -8) {
119             n2l(in, tin0);
120             tin[0] = tin0;
121             n2l(in, tin1);
122             tin[1] = tin1;
123             IDEA_encrypt(tin, ks);
124             tout0 = tin[0] ^ xor0;
125             tout1 = tin[1] ^ xor1;
126             l2nn(tout0, tout1, out, l + 8);
127             xor0 = tin0;
128             xor1 = tin1;
129         }
130         l2n(xor0, iv);
131         l2n(xor1, iv);
132     }
133     tin0 = tin1 = tout0 = tout1 = xor0 = xor1 = 0;
134     tin[0] = tin[1] = 0;
135 }
136
137 void IDEA_encrypt(unsigned long *d, IDEA_KEY_SCHEDULE *key)
138 {
139     register IDEA_INT *p;
140     register unsigned long x1, x2, x3, x4, t0, t1, ul;
141
142     x2 = d[0];
143     x1 = (x2 >> 16);
144     x4 = d[1];
145     x3 = (x4 >> 16);
146
147     p = &(key->data[0][0]);
148
149     E_IDEA(0);
150     E_IDEA(1);
151     E_IDEA(2);
152     E_IDEA(3);
153     E_IDEA(4);
154     E_IDEA(5);
155     E_IDEA(6);
156     E_IDEA(7);
157
158     x1 &= 0xffff;
159     idea_mul(x1, x1, *p, ul);
160     p++;
161
162     t0 = x3 + *(p++);
163     t1 = x2 + *(p++);
164
165     x4 &= 0xffff;
166     idea_mul(x4, x4, *p, ul);
167
168     d[0] = (t0 & 0xffff) | ((x1 & 0xffff) << 16);
169     d[1] = (x4 & 0xffff) | ((t1 & 0xffff) << 16);
170 }