Algorithm parameter support.
[openssl.git] / crypto / evp / e_des3.c
1 /* crypto/evp/e_des3.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  * 
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  * 
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  * 
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from 
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  * 
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  * 
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #include <stdio.h>
60 #include "cryptlib.h"
61 #ifndef OPENSSL_NO_DES
62 #include <openssl/evp.h>
63 #include <openssl/objects.h>
64 #include "evp_locl.h"
65 #include <openssl/des.h>
66 #include <openssl/rand.h>
67
68 typedef struct
69         {
70         union { double align; DES_key_schedule ks[3]; } ks;
71         union {
72                 void (*cbc)(const void *,void *,size_t,const void *,void *);
73         } stream;
74         } DES_EDE_KEY;
75 #define ks1 ks.ks[0]
76 #define ks2 ks.ks[1]
77 #define ks3 ks.ks[2]
78
79 #if defined(AES_ASM) && (defined(__sparc) || defined(__sparc__))
80 /* ---------^^^ this is not a typo, just a way to detect that
81  * assembler support was in general requested... */
82 #include "sparc_arch.h"
83
84 extern unsigned int OPENSSL_sparcv9cap_P[];
85
86 #define SPARC_DES_CAPABLE       (OPENSSL_sparcv9cap_P[1] & CFR_DES)
87
88 void    des_t4_key_expand(const void *key, DES_key_schedule *ks);
89 void    des_t4_ede3_cbc_encrypt(const void *inp,void *out,size_t len,
90                                 DES_key_schedule *ks,unsigned char iv[8]);
91 void    des_t4_ede3_cbc_decrypt(const void *inp,void *out,size_t len,
92                                 DES_key_schedule *ks,unsigned char iv[8]);
93 #endif
94
95 static int des_ede_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
96                             const unsigned char *iv,int enc);
97
98 static int des_ede3_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
99                              const unsigned char *iv,int enc);
100
101 static int des3_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr);
102
103 #define data(ctx) ((DES_EDE_KEY *)(ctx)->cipher_data)
104
105 /* Because of various casts and different args can't use IMPLEMENT_BLOCK_CIPHER */
106
107 static int des_ede_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
108                               const unsigned char *in, size_t inl)
109 {
110         BLOCK_CIPHER_ecb_loop()
111                 DES_ecb3_encrypt((const_DES_cblock *)(in + i),
112                                  (DES_cblock *)(out + i),
113                                  &data(ctx)->ks1, &data(ctx)->ks2,
114                                  &data(ctx)->ks3,
115                                  ctx->encrypt);
116         return 1;
117 }
118
119 static int des_ede_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
120                               const unsigned char *in, size_t inl)
121 {
122         if (inl>=EVP_MAXCHUNK)
123                 {
124                 DES_ede3_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK,
125                                &data(ctx)->ks1, &data(ctx)->ks2, &data(ctx)->ks3,
126                                (DES_cblock *)ctx->iv, &ctx->num);
127                 inl-=EVP_MAXCHUNK;
128                 in +=EVP_MAXCHUNK;
129                 out+=EVP_MAXCHUNK;
130                 }
131         if (inl)
132                 DES_ede3_ofb64_encrypt(in, out, (long)inl,
133                                 &data(ctx)->ks1, &data(ctx)->ks2, &data(ctx)->ks3,
134                                (DES_cblock *)ctx->iv, &ctx->num);
135
136         return 1;
137 }
138
139 static int des_ede_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
140                               const unsigned char *in, size_t inl)
141 {
142         DES_EDE_KEY *dat = data(ctx);
143
144 #ifdef KSSL_DEBUG
145         {
146         int i;
147         char *cp;
148         printf("des_ede_cbc_cipher(ctx=%lx, buflen=%d)\n", ctx, ctx->buf_len);
149         printf("\t iv= ");
150         for(i=0;i<8;i++)
151                 printf("%02X",ctx->iv[i]);
152         printf("\n");
153         }
154 #endif    /* KSSL_DEBUG */
155         if (dat->stream.cbc)
156                 {
157                 (*dat->stream.cbc)(in,out,inl,&dat->ks,ctx->iv);
158                 return 1;
159                 }
160
161         if (inl>=EVP_MAXCHUNK)
162                 {
163                 DES_ede3_cbc_encrypt(in, out, (long)EVP_MAXCHUNK,
164                              &dat->ks1, &dat->ks2, &dat->ks3,
165                              (DES_cblock *)ctx->iv, ctx->encrypt);
166                 inl-=EVP_MAXCHUNK;
167                 in +=EVP_MAXCHUNK;
168                 out+=EVP_MAXCHUNK;
169                 }
170         if (inl)
171                 DES_ede3_cbc_encrypt(in, out, (long)inl,
172                              &dat->ks1, &dat->ks2, &dat->ks3,
173                              (DES_cblock *)ctx->iv, ctx->encrypt);
174         return 1;
175 }
176
177 static int des_ede_cfb64_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
178                               const unsigned char *in, size_t inl)
179 {
180         if (inl>=EVP_MAXCHUNK)
181                 {
182                 DES_ede3_cfb64_encrypt(in, out, (long)EVP_MAXCHUNK, 
183                                &data(ctx)->ks1, &data(ctx)->ks2, &data(ctx)->ks3,
184                                (DES_cblock *)ctx->iv, &ctx->num, ctx->encrypt);
185                 inl-=EVP_MAXCHUNK;
186                 in +=EVP_MAXCHUNK;
187                 out+=EVP_MAXCHUNK;
188                 }
189         if (inl)
190                 DES_ede3_cfb64_encrypt(in, out, (long)inl,
191                                &data(ctx)->ks1, &data(ctx)->ks2, &data(ctx)->ks3,
192                                (DES_cblock *)ctx->iv, &ctx->num, ctx->encrypt);
193         return 1;
194 }
195
196 /* Although we have a CFB-r implementation for 3-DES, it doesn't pack the right
197    way, so wrap it here */
198 static int des_ede3_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
199                                 const unsigned char *in, size_t inl)
200     {
201     size_t n;
202     unsigned char c[1],d[1];
203
204     for(n=0 ; n < inl ; ++n)
205         {
206         c[0]=(in[n/8]&(1 << (7-n%8))) ? 0x80 : 0;
207         DES_ede3_cfb_encrypt(c,d,1,1,
208                              &data(ctx)->ks1,&data(ctx)->ks2,&data(ctx)->ks3,
209                              (DES_cblock *)ctx->iv,ctx->encrypt);
210         out[n/8]=(out[n/8]&~(0x80 >> (unsigned int)(n%8))) |
211                  ((d[0]&0x80) >> (unsigned int)(n%8));
212         }
213
214     return 1;
215     }
216
217 static int des_ede3_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
218                                 const unsigned char *in, size_t inl)
219     {
220     while (inl>=EVP_MAXCHUNK)
221         {
222         DES_ede3_cfb_encrypt(in,out,8,(long)EVP_MAXCHUNK,
223                          &data(ctx)->ks1,&data(ctx)->ks2,&data(ctx)->ks3,
224                          (DES_cblock *)ctx->iv,ctx->encrypt);
225         inl-=EVP_MAXCHUNK;
226         in +=EVP_MAXCHUNK;
227         out+=EVP_MAXCHUNK;
228         }
229     if (inl)
230         DES_ede3_cfb_encrypt(in,out,8,(long)inl,
231                         &data(ctx)->ks1,&data(ctx)->ks2,&data(ctx)->ks3,
232                         (DES_cblock *)ctx->iv,ctx->encrypt);
233     return 1;
234     }
235
236 BLOCK_CIPHER_defs(des_ede, DES_EDE_KEY, NID_des_ede, 8, 16, 8, 64,
237                         EVP_CIPH_RAND_KEY|EVP_CIPH_FLAG_DEFAULT_ASN1,
238                         des_ede_init_key, NULL, NULL, NULL,
239                         des3_ctrl)
240
241 #define des_ede3_cfb64_cipher des_ede_cfb64_cipher
242 #define des_ede3_ofb_cipher des_ede_ofb_cipher
243 #define des_ede3_cbc_cipher des_ede_cbc_cipher
244 #define des_ede3_ecb_cipher des_ede_ecb_cipher
245
246 BLOCK_CIPHER_defs(des_ede3, DES_EDE_KEY, NID_des_ede3, 8, 24, 8, 64,
247                 EVP_CIPH_RAND_KEY|EVP_CIPH_FLAG_FIPS|EVP_CIPH_FLAG_DEFAULT_ASN1,
248                   des_ede3_init_key, NULL, NULL, NULL,
249                   des3_ctrl)
250
251 BLOCK_CIPHER_def_cfb(des_ede3,DES_EDE_KEY,NID_des_ede3,24,8,1,
252                 EVP_CIPH_RAND_KEY|EVP_CIPH_FLAG_FIPS|EVP_CIPH_FLAG_DEFAULT_ASN1,
253                         des_ede3_init_key, NULL, NULL, NULL,
254                         des3_ctrl)
255
256 BLOCK_CIPHER_def_cfb(des_ede3,DES_EDE_KEY,NID_des_ede3,24,8,8,
257                 EVP_CIPH_RAND_KEY|EVP_CIPH_FLAG_FIPS|EVP_CIPH_FLAG_DEFAULT_ASN1,
258                         des_ede3_init_key, NULL, NULL, NULL,
259                         des3_ctrl)
260
261 static int des_ede_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
262                             const unsigned char *iv, int enc)
263         {
264         DES_cblock *deskey = (DES_cblock *)key;
265         DES_EDE_KEY *dat = data(ctx);
266
267         dat->stream.cbc = NULL;
268 #if defined(SPARC_DES_CAPABLE)
269         if (SPARC_DES_CAPABLE)
270                 {
271                 int mode = ctx->cipher->flags & EVP_CIPH_MODE;
272
273                 if (mode == EVP_CIPH_CBC_MODE)
274                         {
275                         des_t4_key_expand(&deskey[0],&dat->ks1);
276                         des_t4_key_expand(&deskey[1],&dat->ks2);
277                         memcpy(&dat->ks3,&dat->ks1,sizeof(dat->ks1));
278                         dat->stream.cbc = enc ? des_t4_ede3_cbc_encrypt :
279                                                 des_t4_ede3_cbc_decrypt;
280                         return 1;
281                         }
282                 }
283 #endif
284 #ifdef EVP_CHECK_DES_KEY
285         if (DES_set_key_checked(&deskey[0],&dat->ks1)
286                 !! DES_set_key_checked(&deskey[1],&dat->ks2))
287                 return 0;
288 #else
289         DES_set_key_unchecked(&deskey[0],&dat->ks1);
290         DES_set_key_unchecked(&deskey[1],&dat->ks2);
291 #endif
292         memcpy(&dat->ks3,&dat->ks1,
293                sizeof(dat->ks1));
294         return 1;
295         }
296
297 static int des_ede3_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
298                              const unsigned char *iv, int enc)
299         {
300         DES_cblock *deskey = (DES_cblock *)key;
301         DES_EDE_KEY *dat = data(ctx);
302
303 #ifdef KSSL_DEBUG
304         {
305         int i;
306         printf("des_ede3_init_key(ctx=%lx)\n", ctx);
307         printf("\tKEY= ");
308         for(i=0;i<24;i++) printf("%02X",key[i]); printf("\n");
309         printf("\t IV= ");
310         for(i=0;i<8;i++) printf("%02X",iv[i]); printf("\n");
311         }
312 #endif  /* KSSL_DEBUG */
313
314         dat->stream.cbc = NULL;
315 #if defined(SPARC_DES_CAPABLE)
316         if (SPARC_DES_CAPABLE)
317                 {
318                 int mode = ctx->cipher->flags & EVP_CIPH_MODE;
319
320                 if (mode == EVP_CIPH_CBC_MODE)
321                         {
322                         des_t4_key_expand(&deskey[0],&dat->ks1);
323                         des_t4_key_expand(&deskey[1],&dat->ks2);
324                         des_t4_key_expand(&deskey[2],&dat->ks3);
325                         dat->stream.cbc = enc ? des_t4_ede3_cbc_encrypt :
326                                                 des_t4_ede3_cbc_decrypt;
327                         return 1;
328                         }
329                 }
330 #endif
331 #ifdef EVP_CHECK_DES_KEY
332         if (DES_set_key_checked(&deskey[0],&dat->ks1)
333                 || DES_set_key_checked(&deskey[1],&dat->ks2)
334                 || DES_set_key_checked(&deskey[2],&dat->ks3))
335                 return 0;
336 #else
337         DES_set_key_unchecked(&deskey[0],&dat->ks1);
338         DES_set_key_unchecked(&deskey[1],&dat->ks2);
339         DES_set_key_unchecked(&deskey[2],&dat->ks3);
340 #endif
341         return 1;
342         }
343
344 static int des3_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr)
345         {
346
347         DES_cblock *deskey = ptr;
348
349         switch(type)
350                 {
351         case EVP_CTRL_RAND_KEY:
352                 if (RAND_bytes(ptr, c->key_len) <= 0)
353                         return 0;
354                 DES_set_odd_parity(deskey);
355                 if (c->key_len >= 16)
356                         DES_set_odd_parity(deskey + 1);
357                 if (c->key_len >= 24)
358                         DES_set_odd_parity(deskey + 2);
359                 return 1;
360
361         default:
362                 return -1;
363                 }
364         }
365
366 const EVP_CIPHER *EVP_des_ede(void)
367 {
368         return &des_ede_ecb;
369 }
370
371 const EVP_CIPHER *EVP_des_ede3(void)
372 {
373         return &des_ede3_ecb;
374 }
375
376 #ifndef OPENSSL_NO_SHA
377
378 #include <openssl/sha.h>
379
380 static const unsigned char wrap_iv[8] = {0x4a,0xdd,0xa2,0x2c,0x79,0xe8,0x21,0x05};
381
382 static int des_ede3_unwrap(EVP_CIPHER_CTX *ctx, unsigned char *out,
383                                 const unsigned char *in, size_t inl)
384         {
385         unsigned char icv[8], iv[8], sha1tmp[SHA_DIGEST_LENGTH];
386         int rv = -1;
387         if (inl < 24)
388                 return -1;
389         if (!out)
390                 return inl - 16;
391         memcpy(ctx->iv, wrap_iv, 8);
392         /* Decrypt first block which will end up as icv */
393         des_ede_cbc_cipher(ctx, icv, in, 8);
394         /* Decrypt central blocks */
395         /* If decrypting in place move whole output along a block
396          * so the next des_ede_cbc_cipher is in place.
397          */
398         if (out == in)
399                 {
400                 memmove(out, out + 8, inl - 8);
401                 in -= 8;
402                 }
403         des_ede_cbc_cipher(ctx, out, in + 8, inl - 16);
404         /* Decrypt final block which will be IV */
405         des_ede_cbc_cipher(ctx, iv, in + inl - 8, 8);
406         /* Reverse order of everything */
407         BUF_reverse(icv, NULL, 8);
408         BUF_reverse(out, NULL, inl - 16);
409         BUF_reverse(ctx->iv, iv, 8);
410         /* Decrypt again using new IV */
411         des_ede_cbc_cipher(ctx, out, out, inl - 16);
412         des_ede_cbc_cipher(ctx, icv, icv, 8);
413         /* Work out SHA1 hash of first portion */
414         SHA1(out, inl - 16, sha1tmp);
415
416         if (!CRYPTO_memcmp(sha1tmp, icv, 8))
417                 rv = inl - 16;
418         OPENSSL_cleanse(icv, 8);
419         OPENSSL_cleanse(sha1tmp, SHA_DIGEST_LENGTH);
420         OPENSSL_cleanse(iv, 8);
421         OPENSSL_cleanse(ctx->iv, 8);
422         if (rv == -1)
423                 OPENSSL_cleanse(out, inl - 16);
424         
425         return rv;
426         }
427
428 static int des_ede3_wrap(EVP_CIPHER_CTX *ctx, unsigned char *out,
429                                 const unsigned char *in, size_t inl)
430         {
431         unsigned char sha1tmp[SHA_DIGEST_LENGTH];
432         if (!out)
433                 return inl + 16;
434         /* Copy input to output buffer + 8 so we have space for IV */
435         memmove(out + 8, in, inl);
436         /* Work out ICV */
437         SHA1(in, inl, sha1tmp);
438         memcpy(out + inl + 8, sha1tmp, 8);
439         OPENSSL_cleanse(sha1tmp, SHA_DIGEST_LENGTH);
440         /* Generate random IV */
441         RAND_bytes(ctx->iv, 8);
442         memcpy(out, ctx->iv, 8);
443         /* Encrypt everything after IV in place */
444         des_ede_cbc_cipher(ctx, out + 8, out + 8, inl + 8);
445         BUF_reverse(out, NULL, inl + 16);
446         memcpy(ctx->iv, wrap_iv, 8);
447         des_ede_cbc_cipher(ctx, out, out, inl + 16);
448         return inl + 16;
449         }
450
451 static int des_ede3_wrap_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
452                                 const unsigned char *in, size_t inl)
453         {
454         /* Sanity check input length: we typically only wrap keys
455          * so EVP_MAXCHUNK is more than will ever be needed. Also
456          * input length must be a multiple of 8 bits.
457          */
458         if (inl >= EVP_MAXCHUNK || inl % 8)
459                 return -1;
460         if (ctx->encrypt)
461                 return des_ede3_wrap(ctx, out, in, inl);
462         else
463                 return des_ede3_unwrap(ctx, out, in, inl);
464         }
465
466 static const EVP_CIPHER des3_wrap = {
467         NID_id_smime_alg_CMS3DESwrap,
468         8, 24, 0,
469         EVP_CIPH_WRAP_MODE|EVP_CIPH_CUSTOM_IV|EVP_CIPH_FLAG_CUSTOM_CIPHER
470                 |EVP_CIPH_FLAG_DEFAULT_ASN1,
471         des_ede3_init_key, des_ede3_wrap_cipher,
472         NULL,   
473         sizeof(DES_EDE_KEY),
474         NULL,NULL,NULL,NULL };
475
476
477 const EVP_CIPHER *EVP_des_ede3_wrap(void)
478         {
479         return &des3_wrap;
480         }
481
482 # endif
483 #endif