1afd917cdca324a47b64f52bda12042dcac2064c
[openssl.git] / crypto / evp / e_des.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 <stdio.h>
59 #include "internal/cryptlib.h"
60 #ifndef OPENSSL_NO_DES
61 # include <openssl/evp.h>
62 # include <openssl/objects.h>
63 # include "internal/evp_int.h"
64 # include <openssl/des.h>
65 # include <openssl/rand.h>
66
67 typedef struct {
68     union {
69         double align;
70         DES_key_schedule ks;
71     } ks;
72     union {
73         void (*cbc) (const void *, void *, size_t,
74                      const DES_key_schedule *, unsigned char *);
75     } stream;
76 } EVP_DES_KEY;
77
78 # if defined(AES_ASM) && (defined(__sparc) || defined(__sparc__))
79 /* ----------^^^ this is not a typo, just a way to detect that
80  * assembler support was in general requested... */
81 #  include "sparc_arch.h"
82
83 extern unsigned int OPENSSL_sparcv9cap_P[];
84
85 #  define SPARC_DES_CAPABLE       (OPENSSL_sparcv9cap_P[1] & CFR_DES)
86
87 void des_t4_key_expand(const void *key, DES_key_schedule *ks);
88 void des_t4_cbc_encrypt(const void *inp, void *out, size_t len,
89                         const DES_key_schedule *ks, unsigned char iv[8]);
90 void des_t4_cbc_decrypt(const void *inp, void *out, size_t len,
91                         const DES_key_schedule *ks, unsigned char iv[8]);
92 # endif
93
94 static int des_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
95                         const unsigned char *iv, int enc);
96 static int des_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr);
97
98 /*
99  * Because of various casts and different names can't use
100  * IMPLEMENT_BLOCK_CIPHER
101  */
102
103 static int des_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
104                           const unsigned char *in, size_t inl)
105 {
106     BLOCK_CIPHER_ecb_loop()
107         DES_ecb_encrypt((DES_cblock *)(in + i), (DES_cblock *)(out + i),
108                         EVP_CIPHER_CTX_cipher_data(ctx),
109                         EVP_CIPHER_CTX_encrypting(ctx));
110     return 1;
111 }
112
113 static int des_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
114                           const unsigned char *in, size_t inl)
115 {
116     while (inl >= EVP_MAXCHUNK) {
117         int num = EVP_CIPHER_CTX_num(ctx);
118         DES_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK,
119                           EVP_CIPHER_CTX_cipher_data(ctx),
120                           (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx), &num);
121         EVP_CIPHER_CTX_set_num(ctx, num);
122         inl -= EVP_MAXCHUNK;
123         in += EVP_MAXCHUNK;
124         out += EVP_MAXCHUNK;
125     }
126     if (inl) {
127         int num = EVP_CIPHER_CTX_num(ctx);
128         DES_ofb64_encrypt(in, out, (long)inl, EVP_CIPHER_CTX_cipher_data(ctx),
129                           (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx), &num);
130         EVP_CIPHER_CTX_set_num(ctx, num);
131     }
132     return 1;
133 }
134
135 static int des_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
136                           const unsigned char *in, size_t inl)
137 {
138     EVP_DES_KEY *dat = (EVP_DES_KEY *) EVP_CIPHER_CTX_cipher_data(ctx);
139
140     if (dat->stream.cbc != NULL) {
141         (*dat->stream.cbc) (in, out, inl, &dat->ks.ks,
142                             EVP_CIPHER_CTX_iv_noconst(ctx));
143         return 1;
144     }
145     while (inl >= EVP_MAXCHUNK) {
146         DES_ncbc_encrypt(in, out, (long)EVP_MAXCHUNK,
147                          EVP_CIPHER_CTX_cipher_data(ctx),
148                          (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx),
149                          EVP_CIPHER_CTX_encrypting(ctx));
150         inl -= EVP_MAXCHUNK;
151         in += EVP_MAXCHUNK;
152         out += EVP_MAXCHUNK;
153     }
154     if (inl)
155         DES_ncbc_encrypt(in, out, (long)inl, EVP_CIPHER_CTX_cipher_data(ctx),
156                          (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx),
157                          EVP_CIPHER_CTX_encrypting(ctx));
158     return 1;
159 }
160
161 static int des_cfb64_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
162                             const unsigned char *in, size_t inl)
163 {
164     while (inl >= EVP_MAXCHUNK) {
165         int num = EVP_CIPHER_CTX_num(ctx);
166         DES_cfb64_encrypt(in, out, (long)EVP_MAXCHUNK,
167                           EVP_CIPHER_CTX_cipher_data(ctx),
168                           (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx), &num,
169                           EVP_CIPHER_CTX_encrypting(ctx));
170         EVP_CIPHER_CTX_set_num(ctx, num);
171         inl -= EVP_MAXCHUNK;
172         in += EVP_MAXCHUNK;
173         out += EVP_MAXCHUNK;
174     }
175     if (inl) {
176         int num = EVP_CIPHER_CTX_num(ctx);
177         DES_cfb64_encrypt(in, out, (long)inl, EVP_CIPHER_CTX_cipher_data(ctx),
178                           (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx), &num,
179                           EVP_CIPHER_CTX_encrypting(ctx));
180         EVP_CIPHER_CTX_set_num(ctx, num);
181     }
182     return 1;
183 }
184
185 /*
186  * Although we have a CFB-r implementation for DES, it doesn't pack the right
187  * way, so wrap it here
188  */
189 static int des_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
190                            const unsigned char *in, size_t inl)
191 {
192     size_t n, chunk = EVP_MAXCHUNK / 8;
193     unsigned char c[1], d[1];
194
195     if (inl < chunk)
196         chunk = inl;
197
198     while (inl && inl >= chunk) {
199         for (n = 0; n < chunk * 8; ++n) {
200             c[0] = (in[n / 8] & (1 << (7 - n % 8))) ? 0x80 : 0;
201             DES_cfb_encrypt(c, d, 1, 1, EVP_CIPHER_CTX_cipher_data(ctx),
202                             (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx),
203                             EVP_CIPHER_CTX_encrypting(ctx));
204             out[n / 8] =
205                 (out[n / 8] & ~(0x80 >> (unsigned int)(n % 8))) |
206                 ((d[0] & 0x80) >> (unsigned int)(n % 8));
207         }
208         inl -= chunk;
209         in += chunk;
210         out += chunk;
211         if (inl < chunk)
212             chunk = inl;
213     }
214
215     return 1;
216 }
217
218 static int des_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
219                            const unsigned char *in, size_t inl)
220 {
221     while (inl >= EVP_MAXCHUNK) {
222         DES_cfb_encrypt(in, out, 8, (long)EVP_MAXCHUNK,
223                         EVP_CIPHER_CTX_cipher_data(ctx),
224                         (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx),
225                         EVP_CIPHER_CTX_encrypting(ctx));
226         inl -= EVP_MAXCHUNK;
227         in += EVP_MAXCHUNK;
228         out += EVP_MAXCHUNK;
229     }
230     if (inl)
231         DES_cfb_encrypt(in, out, 8, (long)inl, EVP_CIPHER_CTX_cipher_data(ctx),
232                         (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx),
233                         EVP_CIPHER_CTX_encrypting(ctx));
234     return 1;
235 }
236
237 BLOCK_CIPHER_defs(des, EVP_DES_KEY, NID_des, 8, 8, 8, 64,
238                   EVP_CIPH_RAND_KEY, des_init_key, NULL,
239                   EVP_CIPHER_set_asn1_iv, EVP_CIPHER_get_asn1_iv, des_ctrl)
240
241     BLOCK_CIPHER_def_cfb(des, EVP_DES_KEY, NID_des, 8, 8, 1,
242                      EVP_CIPH_RAND_KEY, des_init_key, NULL,
243                      EVP_CIPHER_set_asn1_iv, EVP_CIPHER_get_asn1_iv, des_ctrl)
244
245     BLOCK_CIPHER_def_cfb(des, EVP_DES_KEY, NID_des, 8, 8, 8,
246                      EVP_CIPH_RAND_KEY, des_init_key, NULL,
247                      EVP_CIPHER_set_asn1_iv, EVP_CIPHER_get_asn1_iv, des_ctrl)
248
249 static int des_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
250                         const unsigned char *iv, int enc)
251 {
252     DES_cblock *deskey = (DES_cblock *)key;
253     EVP_DES_KEY *dat = (EVP_DES_KEY *) EVP_CIPHER_CTX_cipher_data(ctx);
254
255     dat->stream.cbc = NULL;
256 # if defined(SPARC_DES_CAPABLE)
257     if (SPARC_DES_CAPABLE) {
258         int mode = EVP_CIPHER_CTX_mode(ctx);
259
260         if (mode == EVP_CIPH_CBC_MODE) {
261             des_t4_key_expand(key, &dat->ks.ks);
262             dat->stream.cbc = enc ? des_t4_cbc_encrypt : des_t4_cbc_decrypt;
263             return 1;
264         }
265     }
266 # endif
267     DES_set_key_unchecked(deskey, EVP_CIPHER_CTX_cipher_data(ctx));
268     return 1;
269 }
270
271 static int des_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr)
272 {
273
274     switch (type) {
275     case EVP_CTRL_RAND_KEY:
276         if (RAND_bytes(ptr, 8) <= 0)
277             return 0;
278         DES_set_odd_parity((DES_cblock *)ptr);
279         return 1;
280
281     default:
282         return -1;
283     }
284 }
285
286 #endif