]> git.sesse.net Git - freerainbowtables/blob - Common/rt api/des_enc.c
64-bit fixes for distrrtgen
[freerainbowtables] / Common / rt api / des_enc.c
1 /*      $KAME: des_enc.c,v 1.1 2001/09/10 04:03:58 itojun Exp $ */
2
3 /* crypto/des/des_enc.c */
4
5 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
6  * All rights reserved.
7  *
8  * This package is an SSL implementation written
9  * by Eric Young (eay@cryptsoft.com).
10  * The implementation was written so as to conform with Netscapes SSL.
11  * 
12  * This library is free for commercial and non-commercial use as long as
13  * the following conditions are aheared to.  The following conditions
14  * apply to all code found in this distribution, be it the RC4, RSA,
15  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
16  * included with this distribution is covered by the same copyright terms
17  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
18  * 
19  * Copyright remains Eric Young's, and as such any Copyright notices in
20  * the code are not to be removed.
21  * If this package is used in a product, Eric Young should be given attribution
22  * as the author of the parts of the library used.
23  * This can be in the form of a textual message at program startup or
24  * in documentation (online or textual) provided with the package.
25  * 
26  * Redistribution and use in source and binary forms, with or without
27  * modification, are permitted provided that the following conditions
28  * are met:
29  * 1. Redistributions of source code must retain the copyright
30  *    notice, this list of conditions and the following disclaimer.
31  * 2. Redistributions in binary form must reproduce the above copyright
32  *    notice, this list of conditions and the following disclaimer in the
33  *    documentation and/or other materials provided with the distribution.
34  * 3. All advertising materials mentioning features or use of this software
35  *    must display the following acknowledgement:
36  *    "This product includes cryptographic software written by
37  *     Eric Young (eay@cryptsoft.com)"
38  *    The word 'cryptographic' can be left out if the rouines from the library
39  *    being used are not cryptographic related :-).
40  * 4. If you include any Windows specific code (or a derivative thereof) from 
41  *    the apps directory (application code) you must include an acknowledgement:
42  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
43  * 
44  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
45  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
47  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
48  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
49  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
50  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
51  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
52  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
53  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
54  * SUCH DAMAGE.
55  * 
56  * The licence and distribution terms for any publically available version or
57  * derivative of this code cannot be changed.  i.e. this code cannot simply be
58  * copied and put under another distribution licence
59  * [including the GNU Public Licence.]
60  */
61
62 #include "des_locl.h"
63 #include "spr.h"
64
65 extern  const DES_LONG des_SPtrans[8][64];
66 void des_encrypt1(DES_LONG *data, des_key_schedule ks, int enc)
67 {
68         register DES_LONG l,r,t,u;
69 #ifdef DES_PTR
70         register const unsigned char *des_SP=(const unsigned char *)des_SPtrans;
71 #endif
72 #ifndef DES_UNROLL
73         register int i;
74 #endif
75         register DES_LONG *s;
76
77         r=data[0];
78         l=data[1];
79
80         IP(r,l);
81         /* Things have been modified so that the initial rotate is
82          * done outside the loop.  This required the
83          * des_SPtrans values in sp.h to be rotated 1 bit to the right.
84          * One perl script later and things have a 5% speed up on a sparc2.
85          * Thanks to Richard Outerbridge <71755.204@CompuServe.COM>
86          * for pointing this out. */
87         /* clear the top bits on machines with 8byte longs */
88         /* shift left by 2 */
89         r=ROTATE(r,29)&0xffffffffL;
90         l=ROTATE(l,29)&0xffffffffL;
91
92         s=ks->ks.deslong;
93         /* I don't know if it is worth the effort of loop unrolling the
94          * inner loop */
95         if (enc)
96                 {
97 #ifdef DES_UNROLL
98                 D_ENCRYPT(l,r, 0); /*  1 */
99                 D_ENCRYPT(r,l, 2); /*  2 */
100                 D_ENCRYPT(l,r, 4); /*  3 */
101                 D_ENCRYPT(r,l, 6); /*  4 */
102                 D_ENCRYPT(l,r, 8); /*  5 */
103                 D_ENCRYPT(r,l,10); /*  6 */
104                 D_ENCRYPT(l,r,12); /*  7 */
105                 D_ENCRYPT(r,l,14); /*  8 */
106                 D_ENCRYPT(l,r,16); /*  9 */
107                 D_ENCRYPT(r,l,18); /*  10 */
108                 D_ENCRYPT(l,r,20); /*  11 */
109                 D_ENCRYPT(r,l,22); /*  12 */
110                 D_ENCRYPT(l,r,24); /*  13 */
111                 D_ENCRYPT(r,l,26); /*  14 */
112                 D_ENCRYPT(l,r,28); /*  15 */
113                 D_ENCRYPT(r,l,30); /*  16 */
114 #else
115                 for (i=0; i<32; i+=8)
116                         {
117                         D_ENCRYPT(l,r,i+0); /*  1 */
118                         D_ENCRYPT(r,l,i+2); /*  2 */
119                         D_ENCRYPT(l,r,i+4); /*  3 */
120                         D_ENCRYPT(r,l,i+6); /*  4 */
121                         }
122 #endif
123                 }
124         else
125                 {
126 #ifdef DES_UNROLL
127                 D_ENCRYPT(l,r,30); /* 16 */
128                 D_ENCRYPT(r,l,28); /* 15 */
129                 D_ENCRYPT(l,r,26); /* 14 */
130                 D_ENCRYPT(r,l,24); /* 13 */
131                 D_ENCRYPT(l,r,22); /* 12 */
132                 D_ENCRYPT(r,l,20); /* 11 */
133                 D_ENCRYPT(l,r,18); /* 10 */
134                 D_ENCRYPT(r,l,16); /*  9 */
135                 D_ENCRYPT(l,r,14); /*  8 */
136                 D_ENCRYPT(r,l,12); /*  7 */
137                 D_ENCRYPT(l,r,10); /*  6 */
138                 D_ENCRYPT(r,l, 8); /*  5 */
139                 D_ENCRYPT(l,r, 6); /*  4 */
140                 D_ENCRYPT(r,l, 4); /*  3 */
141                 D_ENCRYPT(l,r, 2); /*  2 */
142                 D_ENCRYPT(r,l, 0); /*  1 */
143 #else
144                 for (i=30; i>0; i-=8)
145                         {
146                         D_ENCRYPT(l,r,i-0); /* 16 */
147                         D_ENCRYPT(r,l,i-2); /* 15 */
148                         D_ENCRYPT(l,r,i-4); /* 14 */
149                         D_ENCRYPT(r,l,i-6); /* 13 */
150                         }
151 #endif
152                 }
153
154         /* rotate and clear the top bits on machines with 8byte longs */
155         l=ROTATE(l,3)&0xffffffffL;
156         r=ROTATE(r,3)&0xffffffffL;
157
158         FP(r,l);
159         data[0]=l;
160         data[1]=r;
161         l=r=t=u=0;
162 }
163
164 void des_encrypt2(DES_LONG *data, des_key_schedule ks, int enc)
165 {
166         register DES_LONG l,r,t,u;
167 #ifdef DES_PTR
168         register const unsigned char *des_SP=(const unsigned char *)des_SPtrans;
169 #endif
170 #ifndef DES_UNROLL
171         register int i;
172 #endif
173         register DES_LONG *s;
174
175         r=data[0];
176         l=data[1];
177
178         /* Things have been modified so that the initial rotate is
179          * done outside the loop.  This required the
180          * des_SPtrans values in sp.h to be rotated 1 bit to the right.
181          * One perl script later and things have a 5% speed up on a sparc2.
182          * Thanks to Richard Outerbridge <71755.204@CompuServe.COM>
183          * for pointing this out. */
184         /* clear the top bits on machines with 8byte longs */
185         r=ROTATE(r,29)&0xffffffffL;
186         l=ROTATE(l,29)&0xffffffffL;
187
188         s=ks->ks.deslong;
189         /* I don't know if it is worth the effort of loop unrolling the
190          * inner loop */
191         if (enc)
192                 {
193 #ifdef DES_UNROLL
194                 D_ENCRYPT(l,r, 0); /*  1 */
195                 D_ENCRYPT(r,l, 2); /*  2 */
196                 D_ENCRYPT(l,r, 4); /*  3 */
197                 D_ENCRYPT(r,l, 6); /*  4 */
198                 D_ENCRYPT(l,r, 8); /*  5 */
199                 D_ENCRYPT(r,l,10); /*  6 */
200                 D_ENCRYPT(l,r,12); /*  7 */
201                 D_ENCRYPT(r,l,14); /*  8 */
202                 D_ENCRYPT(l,r,16); /*  9 */
203                 D_ENCRYPT(r,l,18); /*  10 */
204                 D_ENCRYPT(l,r,20); /*  11 */
205                 D_ENCRYPT(r,l,22); /*  12 */
206                 D_ENCRYPT(l,r,24); /*  13 */
207                 D_ENCRYPT(r,l,26); /*  14 */
208                 D_ENCRYPT(l,r,28); /*  15 */
209                 D_ENCRYPT(r,l,30); /*  16 */
210 #else
211                 for (i=0; i<32; i+=8)
212                         {
213                         D_ENCRYPT(l,r,i+0); /*  1 */
214                         D_ENCRYPT(r,l,i+2); /*  2 */
215                         D_ENCRYPT(l,r,i+4); /*  3 */
216                         D_ENCRYPT(r,l,i+6); /*  4 */
217                         }
218 #endif
219                 }
220         else
221                 {
222 #ifdef DES_UNROLL
223                 D_ENCRYPT(l,r,30); /* 16 */
224                 D_ENCRYPT(r,l,28); /* 15 */
225                 D_ENCRYPT(l,r,26); /* 14 */
226                 D_ENCRYPT(r,l,24); /* 13 */
227                 D_ENCRYPT(l,r,22); /* 12 */
228                 D_ENCRYPT(r,l,20); /* 11 */
229                 D_ENCRYPT(l,r,18); /* 10 */
230                 D_ENCRYPT(r,l,16); /*  9 */
231                 D_ENCRYPT(l,r,14); /*  8 */
232                 D_ENCRYPT(r,l,12); /*  7 */
233                 D_ENCRYPT(l,r,10); /*  6 */
234                 D_ENCRYPT(r,l, 8); /*  5 */
235                 D_ENCRYPT(l,r, 6); /*  4 */
236                 D_ENCRYPT(r,l, 4); /*  3 */
237                 D_ENCRYPT(l,r, 2); /*  2 */
238                 D_ENCRYPT(r,l, 0); /*  1 */
239 #else
240                 for (i=30; i>0; i-=8)
241                         {
242                         D_ENCRYPT(l,r,i-0); /* 16 */
243                         D_ENCRYPT(r,l,i-2); /* 15 */
244                         D_ENCRYPT(l,r,i-4); /* 14 */
245                         D_ENCRYPT(r,l,i-6); /* 13 */
246                         }
247 #endif
248                 }
249         /* rotate and clear the top bits on machines with 8byte longs */
250         data[0]=ROTATE(l,3)&0xffffffffL;
251         data[1]=ROTATE(r,3)&0xffffffffL;
252         l=r=t=u=0;
253 }
254
255 void des_encrypt3(DES_LONG *data, des_key_schedule ks1, des_key_schedule ks2,
256              des_key_schedule ks3)
257 {
258         register DES_LONG l,r;
259
260         l=data[0];
261         r=data[1];
262         IP(l,r);
263         data[0]=l;
264         data[1]=r;
265         des_encrypt2((DES_LONG *)data,ks1,DES_ENCRYPT);
266         des_encrypt2((DES_LONG *)data,ks2,DES_DECRYPT);
267         des_encrypt2((DES_LONG *)data,ks3,DES_ENCRYPT);
268         l=data[0];
269         r=data[1];
270         FP(r,l);
271         data[0]=l;
272         data[1]=r;
273 }
274
275 void des_decrypt3(DES_LONG *data, des_key_schedule ks1, des_key_schedule ks2,
276              des_key_schedule ks3)
277 {
278         register DES_LONG l,r;
279
280         l=data[0];
281         r=data[1];
282         IP(l,r);
283         data[0]=l;
284         data[1]=r;
285         des_encrypt2((DES_LONG *)data,ks3,DES_DECRYPT);
286         des_encrypt2((DES_LONG *)data,ks2,DES_ENCRYPT);
287         des_encrypt2((DES_LONG *)data,ks1,DES_DECRYPT);
288         l=data[0];
289         r=data[1];
290         FP(r,l);
291         data[0]=l;
292         data[1]=r;
293 }