Fix warning.
[openssl.git] / crypto / des / des_old.c
1 /* crypto/des/des_old.c -*- mode:C; c-file-style: "eay" -*- */
2
3 /* WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
4  *
5  * The function names in here are deprecated and are only present to
6  * provide an interface compatible with libdes.  OpenSSL now provides
7  * functions where "des_" has been replaced with "DES_" in the names,
8  * to make it possible to make incompatible changes that are needed
9  * for C type security and other stuff.
10  *
11  * Please consider starting to use the DES_ functions rather than the
12  * des_ ones.  The des_ functions will dissapear completely before
13  * OpenSSL 1.0!
14  *
15  * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
16  */
17
18 /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL
19  * project 2001.
20  */
21 /* ====================================================================
22  * Copyright (c) 1998-2001 The OpenSSL Project.  All rights reserved.
23  *
24  * Redistribution and use in source and binary forms, with or without
25  * modification, are permitted provided that the following conditions
26  * are met:
27  *
28  * 1. Redistributions of source code must retain the above copyright
29  *    notice, this list of conditions and the following disclaimer. 
30  *
31  * 2. Redistributions in binary form must reproduce the above copyright
32  *    notice, this list of conditions and the following disclaimer in
33  *    the documentation and/or other materials provided with the
34  *    distribution.
35  *
36  * 3. All advertising materials mentioning features or use of this
37  *    software must display the following acknowledgment:
38  *    "This product includes software developed by the OpenSSL Project
39  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
40  *
41  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
42  *    endorse or promote products derived from this software without
43  *    prior written permission. For written permission, please contact
44  *    openssl-core@openssl.org.
45  *
46  * 5. Products derived from this software may not be called "OpenSSL"
47  *    nor may "OpenSSL" appear in their names without prior written
48  *    permission of the OpenSSL Project.
49  *
50  * 6. Redistributions of any form whatsoever must retain the following
51  *    acknowledgment:
52  *    "This product includes software developed by the OpenSSL Project
53  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
54  *
55  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
56  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
57  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
58  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
59  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
60  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
61  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
62  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
63  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
64  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
65  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
66  * OF THE POSSIBILITY OF SUCH DAMAGE.
67  * ====================================================================
68  *
69  * This product includes cryptographic software written by Eric Young
70  * (eay@cryptsoft.com).  This product includes software written by Tim
71  * Hudson (tjh@cryptsoft.com).
72  *
73  */
74
75 #include <openssl/des_old.h>
76 #include <openssl/rand.h>
77
78 const char *des_options(void)
79         {
80         return DES_options();
81         }
82 void des_ecb3_encrypt(des_cblock *input,des_cblock *output,
83         des_key_schedule ks1,des_key_schedule ks2,
84         des_key_schedule ks3, int enc)
85         {
86         DES_ecb3_encrypt((const_DES_cblock *)input, output,
87                 (DES_key_schedule *)ks1, (DES_key_schedule *)ks2,
88                 (DES_key_schedule *)ks3, enc);
89         }
90 DES_LONG des_cbc_cksum(des_cblock *input,des_cblock *output,
91         long length,des_key_schedule schedule,des_cblock *ivec)
92         {
93         return DES_cbc_cksum((unsigned char *)input, output, length,
94                 (DES_key_schedule *)schedule, ivec);
95         }
96 void des_cbc_encrypt(des_cblock *input,des_cblock *output,long length,
97         des_key_schedule schedule,des_cblock *ivec,int enc)
98         {
99         DES_cbc_encrypt((unsigned char *)input, (unsigned char *)output,
100                 length, (DES_key_schedule *)schedule, ivec, enc);
101         }
102 void des_ncbc_encrypt(des_cblock *input,des_cblock *output,long length,
103         des_key_schedule schedule,des_cblock *ivec,int enc)
104         {
105         DES_ncbc_encrypt((unsigned char *)input, (unsigned char *)output,
106                 length, (DES_key_schedule *)schedule, ivec, enc);
107         }
108 void des_xcbc_encrypt(des_cblock *input,des_cblock *output,long length,
109         des_key_schedule schedule,des_cblock *ivec,
110         des_cblock *inw,des_cblock *outw,int enc)
111         {
112         DES_xcbc_encrypt((unsigned char *)input, (unsigned char *)output,
113                 length, (DES_key_schedule *)schedule, ivec, inw, outw, enc);
114         }
115 void des_cfb_encrypt(unsigned char *in,unsigned char *out,int numbits,
116         long length,des_key_schedule schedule,des_cblock *ivec,int enc)
117         {
118         DES_cfb_encrypt(in, out, numbits, length,
119                 (DES_key_schedule *)schedule, ivec, enc);
120         }
121 void des_ecb_encrypt(des_cblock *input,des_cblock *output,
122         des_key_schedule ks,int enc)
123         {
124         DES_ecb_encrypt(input, output, (DES_key_schedule *)ks, enc);
125         }
126 void des_encrypt(DES_LONG *data,des_key_schedule ks, int enc)
127         {
128         DES_encrypt1(data, (DES_key_schedule *)ks, enc);
129         }
130 void des_encrypt2(DES_LONG *data,des_key_schedule ks, int enc)
131         {
132         DES_encrypt2(data, (DES_key_schedule *)ks, enc);
133         }
134 void des_encrypt3(DES_LONG *data, des_key_schedule ks1,
135         des_key_schedule ks2, des_key_schedule ks3)
136         {
137         DES_encrypt3(data, (DES_key_schedule *)ks1, (DES_key_schedule *)ks2,
138                 (DES_key_schedule *)ks3);
139         }
140 void des_decrypt3(DES_LONG *data, des_key_schedule ks1,
141         des_key_schedule ks2, des_key_schedule ks3)
142         {
143         DES_decrypt3(data, (DES_key_schedule *)ks1, (DES_key_schedule *)ks2,
144                 (DES_key_schedule *)ks3);
145         }
146 void des_ede3_cbc_encrypt(des_cblock *input, des_cblock *output, 
147         long length, des_key_schedule ks1, des_key_schedule ks2, 
148         des_key_schedule ks3, des_cblock *ivec, int enc)
149         {
150         DES_ede3_cbc_encrypt((unsigned char *)input, (unsigned char *)output,
151                 length, (DES_key_schedule *)ks1, (DES_key_schedule *)ks2,
152                 (DES_key_schedule *)ks3, ivec, enc);
153         }
154 void des_ede3_cfb64_encrypt(unsigned char *in, unsigned char *out,
155         long length, des_key_schedule ks1, des_key_schedule ks2,
156         des_key_schedule ks3, des_cblock *ivec, int *num, int enc)
157         {
158         DES_ede3_cfb64_encrypt(in, out, length,
159                 (DES_key_schedule *)ks1, (DES_key_schedule *)ks2,
160                 (DES_key_schedule *)ks3, ivec, num, enc);
161         }
162 void des_ede3_ofb64_encrypt(unsigned char *in, unsigned char *out,
163         long length, des_key_schedule ks1, des_key_schedule ks2,
164         des_key_schedule ks3, des_cblock *ivec, int *num)
165         {
166         DES_ede3_ofb64_encrypt(in, out, length,
167                 (DES_key_schedule *)ks1, (DES_key_schedule *)ks2,
168                 (DES_key_schedule *)ks3, ivec, num);
169         }
170
171 void des_xwhite_in2out(des_cblock (*des_key), des_cblock (*in_white),
172         des_cblock (*out_white))
173         {
174         DES_xwhite_in2out(des_key, in_white, out_white);
175         }
176
177 int des_enc_read(int fd,char *buf,int len,des_key_schedule sched,
178         des_cblock *iv)
179         {
180         return DES_enc_read(fd, buf, len, (DES_key_schedule *)sched, iv);
181         }
182 int des_enc_write(int fd,char *buf,int len,des_key_schedule sched,
183         des_cblock *iv)
184         {
185         return DES_enc_write(fd, buf, len, (DES_key_schedule *)sched, iv);
186         }
187 char *des_fcrypt(const char *buf,const char *salt, char *ret)
188         {
189         return DES_fcrypt(buf, salt, ret);
190         }
191 char *des_crypt(const char *buf,const char *salt)
192         {
193         return DES_crypt(buf, salt);
194         }
195 #if !defined(PERL5) && !defined(__FreeBSD__) && !defined(NeXT)
196 char *crypt(const char *buf,const char *salt)
197         {
198         return DES_crypt(buf, salt);
199         }
200 #endif
201 void des_ofb_encrypt(unsigned char *in,unsigned char *out,
202         int numbits,long length,des_key_schedule schedule,des_cblock *ivec)
203         {
204         DES_ofb_encrypt(in, out, numbits, length, (DES_key_schedule *)schedule,
205                 ivec);
206         }
207 void des_pcbc_encrypt(des_cblock *input,des_cblock *output,long length,
208         des_key_schedule schedule,des_cblock *ivec,int enc)
209         {
210         DES_pcbc_encrypt((unsigned char *)input, (unsigned char *)output,
211                 length, (DES_key_schedule *)schedule, ivec, enc);
212         }
213 DES_LONG des_quad_cksum(des_cblock *input,des_cblock *output,
214         long length,int out_count,des_cblock *seed)
215         {
216         return DES_quad_cksum((unsigned char *)input, output, length,
217                 out_count, seed);
218         }
219 void des_random_seed(des_cblock key)
220         {
221         RAND_seed(key, sizeof(des_cblock));
222         }
223 void des_random_key(des_cblock ret)
224         {
225         DES_random_key((DES_cblock *)ret);
226         }
227 void des_set_odd_parity(des_cblock *key)
228         {
229         DES_set_odd_parity(key);
230         }
231 int des_is_weak_key(des_cblock *key)
232         {
233         return DES_is_weak_key(key);
234         }
235 int des_set_key(des_cblock *key,des_key_schedule schedule)
236         {
237         return DES_set_key(key, (DES_key_schedule *)schedule);
238         }
239 int des_key_sched(des_cblock *key,des_key_schedule schedule)
240         {
241         return DES_key_sched(key, (DES_key_schedule *)schedule);
242         }
243 void des_string_to_key(char *str,des_cblock *key)
244         {
245         DES_string_to_key(str, key);
246         }
247 void des_string_to_2keys(char *str,des_cblock *key1,des_cblock *key2)
248         {
249         DES_string_to_2keys(str, key1, key2);
250         }
251 void des_cfb64_encrypt(unsigned char *in, unsigned char *out, long length,
252         des_key_schedule schedule, des_cblock *ivec, int *num, int enc)
253         {
254         DES_cfb64_encrypt(in, out, length, (DES_key_schedule *)schedule,
255                 ivec, num, enc);
256         }
257 void des_ofb64_encrypt(unsigned char *in, unsigned char *out, long length,
258         des_key_schedule schedule, des_cblock *ivec, int *num)
259         {
260         DES_ofb64_encrypt(in, out, length, (DES_key_schedule *)schedule,
261                 ivec, num);
262         }