Make CTR mode behaviour consistent with other modes:
[openssl.git] / crypto / evp / evp_enc.c
1 /* crypto/evp/evp_enc.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 #include <openssl/evp.h>
62 #include <openssl/err.h>
63 #include <openssl/rand.h>
64 #ifndef OPENSSL_NO_ENGINE
65 #include <openssl/engine.h>
66 #endif
67 #ifdef OPENSSL_FIPS
68 #include <openssl/fips.h>
69 #endif
70 #include "evp_locl.h"
71
72 #ifdef OPENSSL_FIPS
73 #define M_do_cipher(ctx, out, in, inl) FIPS_cipher(ctx, out, in, inl)
74 #else
75 #define M_do_cipher(ctx, out, in, inl) ctx->cipher->do_cipher(ctx, out, in, inl)
76 #endif
77
78
79 const char EVP_version[]="EVP" OPENSSL_VERSION_PTEXT;
80
81 void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx)
82         {
83         memset(ctx,0,sizeof(EVP_CIPHER_CTX));
84         /* ctx->cipher=NULL; */
85         }
86
87 EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void)
88         {
89         EVP_CIPHER_CTX *ctx=OPENSSL_malloc(sizeof *ctx);
90         if (ctx)
91                 EVP_CIPHER_CTX_init(ctx);
92         return ctx;
93         }
94
95 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
96              const unsigned char *key, const unsigned char *iv, int enc)
97         {
98         if (cipher)
99                 EVP_CIPHER_CTX_init(ctx);
100         return EVP_CipherInit_ex(ctx,cipher,NULL,key,iv,enc);
101         }
102
103 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl,
104              const unsigned char *key, const unsigned char *iv, int enc)
105         {
106         if (enc == -1)
107                 enc = ctx->encrypt;
108         else
109                 {
110                 if (enc)
111                         enc = 1;
112                 ctx->encrypt = enc;
113                 }
114 #ifndef OPENSSL_NO_ENGINE
115         /* Whether it's nice or not, "Inits" can be used on "Final"'d contexts
116          * so this context may already have an ENGINE! Try to avoid releasing
117          * the previous handle, re-querying for an ENGINE, and having a
118          * reinitialisation, when it may all be unecessary. */
119         if (ctx->engine && ctx->cipher && (!cipher ||
120                         (cipher && (cipher->nid == ctx->cipher->nid))))
121                 goto skip_to_init;
122 #endif
123         if (cipher)
124                 {
125                 /* Ensure a context left lying around from last time is cleared
126                  * (the previous check attempted to avoid this if the same
127                  * ENGINE and EVP_CIPHER could be used). */
128                 EVP_CIPHER_CTX_cleanup(ctx);
129
130                 /* Restore encrypt field: it is zeroed by cleanup */
131                 ctx->encrypt = enc;
132 #ifndef OPENSSL_NO_ENGINE
133                 if(impl)
134                         {
135                         if (!ENGINE_init(impl))
136                                 {
137                                 EVPerr(EVP_F_EVP_CIPHERINIT_EX, EVP_R_INITIALIZATION_ERROR);
138                                 return 0;
139                                 }
140                         }
141                 else
142                         /* Ask if an ENGINE is reserved for this job */
143                         impl = ENGINE_get_cipher_engine(cipher->nid);
144                 if(impl)
145                         {
146                         /* There's an ENGINE for this job ... (apparently) */
147                         const EVP_CIPHER *c = ENGINE_get_cipher(impl, cipher->nid);
148                         if(!c)
149                                 {
150                                 /* One positive side-effect of US's export
151                                  * control history, is that we should at least
152                                  * be able to avoid using US mispellings of
153                                  * "initialisation"? */
154                                 EVPerr(EVP_F_EVP_CIPHERINIT_EX, EVP_R_INITIALIZATION_ERROR);
155                                 return 0;
156                                 }
157                         /* We'll use the ENGINE's private cipher definition */
158                         cipher = c;
159                         /* Store the ENGINE functional reference so we know
160                          * 'cipher' came from an ENGINE and we need to release
161                          * it when done. */
162                         ctx->engine = impl;
163                         }
164                 else
165                         ctx->engine = NULL;
166 #endif
167
168 #ifdef OPENSSL_FIPS
169                 return FIPS_cipherinit(ctx, cipher, key, iv, enc);
170 #else
171                 ctx->cipher=cipher;
172                 if (ctx->cipher->ctx_size)
173                         {
174                         ctx->cipher_data=OPENSSL_malloc(ctx->cipher->ctx_size);
175                         if (!ctx->cipher_data)
176                                 {
177                                 EVPerr(EVP_F_EVP_CIPHERINIT_EX, ERR_R_MALLOC_FAILURE);
178                                 return 0;
179                                 }
180                         }
181                 else
182                         {
183                         ctx->cipher_data = NULL;
184                         }
185                 ctx->key_len = cipher->key_len;
186                 ctx->flags = 0;
187                 if(ctx->cipher->flags & EVP_CIPH_CTRL_INIT)
188                         {
189                         if(!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_INIT, 0, NULL))
190                                 {
191                                 EVPerr(EVP_F_EVP_CIPHERINIT_EX, EVP_R_INITIALIZATION_ERROR);
192                                 return 0;
193                                 }
194                         }
195 #endif
196                 }
197         else if(!ctx->cipher)
198                 {
199                 EVPerr(EVP_F_EVP_CIPHERINIT_EX, EVP_R_NO_CIPHER_SET);
200                 return 0;
201                 }
202 #ifndef OPENSSL_NO_ENGINE
203 skip_to_init:
204 #endif
205 #ifdef OPENSSL_FIPS
206         return FIPS_cipherinit(ctx, cipher, key, iv, enc);
207 #else
208         /* we assume block size is a power of 2 in *cryptUpdate */
209         OPENSSL_assert(ctx->cipher->block_size == 1
210             || ctx->cipher->block_size == 8
211             || ctx->cipher->block_size == 16);
212
213         if(!(EVP_CIPHER_CTX_flags(ctx) & EVP_CIPH_CUSTOM_IV)) {
214                 switch(EVP_CIPHER_CTX_mode(ctx)) {
215
216                         case EVP_CIPH_STREAM_CIPHER:
217                         case EVP_CIPH_ECB_MODE:
218                         break;
219
220                         case EVP_CIPH_CFB_MODE:
221                         case EVP_CIPH_OFB_MODE:
222
223                         ctx->num = 0;
224                         /* fall-through */
225
226                         case EVP_CIPH_CBC_MODE:
227
228                         OPENSSL_assert(EVP_CIPHER_CTX_iv_length(ctx) <=
229                                         (int)sizeof(ctx->iv));
230                         if(iv) memcpy(ctx->oiv, iv, EVP_CIPHER_CTX_iv_length(ctx));
231                         memcpy(ctx->iv, ctx->oiv, EVP_CIPHER_CTX_iv_length(ctx));
232                         break;
233
234                         case EVP_CIPH_CTR_MODE:
235                         ctx->num = 0;
236                         /* Don't reuse IV for CTR mode */
237                         if(iv)
238                                 memcpy(ctx->iv, iv, EVP_CIPHER_CTX_iv_length(ctx));
239                         break;
240
241                         default:
242                         return 0;
243                         break;
244                 }
245         }
246
247         if(key || (ctx->cipher->flags & EVP_CIPH_ALWAYS_CALL_INIT)) {
248                 if(!ctx->cipher->init(ctx,key,iv,enc)) return 0;
249         }
250         ctx->buf_len=0;
251         ctx->final_used=0;
252         ctx->block_mask=ctx->cipher->block_size-1;
253         return 1;
254 #endif
255         }
256
257 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
258              const unsigned char *in, int inl)
259         {
260         if (ctx->encrypt)
261                 return EVP_EncryptUpdate(ctx,out,outl,in,inl);
262         else    return EVP_DecryptUpdate(ctx,out,outl,in,inl);
263         }
264
265 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
266         {
267         if (ctx->encrypt)
268                 return EVP_EncryptFinal_ex(ctx,out,outl);
269         else    return EVP_DecryptFinal_ex(ctx,out,outl);
270         }
271
272 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
273         {
274         if (ctx->encrypt)
275                 return EVP_EncryptFinal(ctx,out,outl);
276         else    return EVP_DecryptFinal(ctx,out,outl);
277         }
278
279 int EVP_EncryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
280              const unsigned char *key, const unsigned char *iv)
281         {
282         return EVP_CipherInit(ctx, cipher, key, iv, 1);
283         }
284
285 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
286                 const unsigned char *key, const unsigned char *iv)
287         {
288         return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1);
289         }
290
291 int EVP_DecryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
292              const unsigned char *key, const unsigned char *iv)
293         {
294         return EVP_CipherInit(ctx, cipher, key, iv, 0);
295         }
296
297 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl,
298              const unsigned char *key, const unsigned char *iv)
299         {
300         return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 0);
301         }
302
303 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
304              const unsigned char *in, int inl)
305         {
306         int i,j,bl;
307
308         if (ctx->cipher->flags & EVP_CIPH_FLAG_CUSTOM_CIPHER)
309                 {
310                 i = M_do_cipher(ctx, out, in, inl);
311                 if (i < 0)
312                         return 0;
313                 else
314                         *outl = i;
315                 return 1;
316                 }
317
318         if (inl <= 0)
319                 {
320                 *outl = 0;
321                 return inl == 0;
322                 }
323
324         if(ctx->buf_len == 0 && (inl&(ctx->block_mask)) == 0)
325                 {
326                 if(M_do_cipher(ctx,out,in,inl))
327                         {
328                         *outl=inl;
329                         return 1;
330                         }
331                 else
332                         {
333                         *outl=0;
334                         return 0;
335                         }
336                 }
337         i=ctx->buf_len;
338         bl=ctx->cipher->block_size;
339         OPENSSL_assert(bl <= (int)sizeof(ctx->buf));
340         if (i != 0)
341                 {
342                 if (i+inl < bl)
343                         {
344                         memcpy(&(ctx->buf[i]),in,inl);
345                         ctx->buf_len+=inl;
346                         *outl=0;
347                         return 1;
348                         }
349                 else
350                         {
351                         j=bl-i;
352                         memcpy(&(ctx->buf[i]),in,j);
353                         if(!M_do_cipher(ctx,out,ctx->buf,bl)) return 0;
354                         inl-=j;
355                         in+=j;
356                         out+=bl;
357                         *outl=bl;
358                         }
359                 }
360         else
361                 *outl = 0;
362         i=inl&(bl-1);
363         inl-=i;
364         if (inl > 0)
365                 {
366                 if(!M_do_cipher(ctx,out,in,inl)) return 0;
367                 *outl+=inl;
368                 }
369
370         if (i != 0)
371                 memcpy(ctx->buf,&(in[inl]),i);
372         ctx->buf_len=i;
373         return 1;
374         }
375
376 int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
377         {
378         int ret;
379         ret = EVP_EncryptFinal_ex(ctx, out, outl);
380         return ret;
381         }
382
383 int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
384         {
385         int n,ret;
386         unsigned int i, b, bl;
387
388         if (ctx->cipher->flags & EVP_CIPH_FLAG_CUSTOM_CIPHER)
389                 {
390                 ret = M_do_cipher(ctx, out, NULL, 0);
391                 if (ret < 0)
392                         return 0;
393                 else 
394                         *outl = ret;
395                 return 1;
396                 }
397
398         b=ctx->cipher->block_size;
399         OPENSSL_assert(b <= sizeof ctx->buf);
400         if (b == 1)
401                 {
402                 *outl=0;
403                 return 1;
404                 }
405         bl=ctx->buf_len;
406         if (ctx->flags & EVP_CIPH_NO_PADDING)
407                 {
408                 if(bl)
409                         {
410                         EVPerr(EVP_F_EVP_ENCRYPTFINAL_EX,EVP_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH);
411                         return 0;
412                         }
413                 *outl = 0;
414                 return 1;
415                 }
416
417         n=b-bl;
418         for (i=bl; i<b; i++)
419                 ctx->buf[i]=n;
420         ret=M_do_cipher(ctx,out,ctx->buf,b);
421
422
423         if(ret)
424                 *outl=b;
425
426         return ret;
427         }
428
429 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
430              const unsigned char *in, int inl)
431         {
432         int fix_len;
433         unsigned int b;
434
435         if (ctx->cipher->flags & EVP_CIPH_FLAG_CUSTOM_CIPHER)
436                 {
437                 fix_len = M_do_cipher(ctx, out, in, inl);
438                 if (fix_len < 0)
439                         {
440                         *outl = 0;
441                         return 0;
442                         }
443                 else
444                         *outl = fix_len;
445                 return 1;
446                 }
447
448         if (inl <= 0)
449                 {
450                 *outl = 0;
451                 return inl == 0;
452                 }
453
454         if (ctx->flags & EVP_CIPH_NO_PADDING)
455                 return EVP_EncryptUpdate(ctx, out, outl, in, inl);
456
457         b=ctx->cipher->block_size;
458         OPENSSL_assert(b <= sizeof ctx->final);
459
460         if(ctx->final_used)
461                 {
462                 memcpy(out,ctx->final,b);
463                 out+=b;
464                 fix_len = 1;
465                 }
466         else
467                 fix_len = 0;
468
469
470         if(!EVP_EncryptUpdate(ctx,out,outl,in,inl))
471                 return 0;
472
473         /* if we have 'decrypted' a multiple of block size, make sure
474          * we have a copy of this last block */
475         if (b > 1 && !ctx->buf_len)
476                 {
477                 *outl-=b;
478                 ctx->final_used=1;
479                 memcpy(ctx->final,&out[*outl],b);
480                 }
481         else
482                 ctx->final_used = 0;
483
484         if (fix_len)
485                 *outl += b;
486                 
487         return 1;
488         }
489
490 int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
491         {
492         int ret;
493         ret = EVP_DecryptFinal_ex(ctx, out, outl);
494         return ret;
495         }
496
497 int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
498         {
499         int i,n;
500         unsigned int b;
501         *outl=0;
502
503         if (ctx->cipher->flags & EVP_CIPH_FLAG_CUSTOM_CIPHER)
504                 {
505                 i = M_do_cipher(ctx, out, NULL, 0);
506                 if (i < 0)
507                         return 0;
508                 else
509                         *outl = i;
510                 return 1;
511                 }
512
513         b=ctx->cipher->block_size;
514         if (ctx->flags & EVP_CIPH_NO_PADDING)
515                 {
516                 if(ctx->buf_len)
517                         {
518                         EVPerr(EVP_F_EVP_DECRYPTFINAL_EX,EVP_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH);
519                         return 0;
520                         }
521                 *outl = 0;
522                 return 1;
523                 }
524         if (b > 1)
525                 {
526                 if (ctx->buf_len || !ctx->final_used)
527                         {
528                         EVPerr(EVP_F_EVP_DECRYPTFINAL_EX,EVP_R_WRONG_FINAL_BLOCK_LENGTH);
529                         return(0);
530                         }
531                 OPENSSL_assert(b <= sizeof ctx->final);
532                 n=ctx->final[b-1];
533                 if (n == 0 || n > (int)b)
534                         {
535                         EVPerr(EVP_F_EVP_DECRYPTFINAL_EX,EVP_R_BAD_DECRYPT);
536                         return(0);
537                         }
538                 for (i=0; i<n; i++)
539                         {
540                         if (ctx->final[--b] != n)
541                                 {
542                                 EVPerr(EVP_F_EVP_DECRYPTFINAL_EX,EVP_R_BAD_DECRYPT);
543                                 return(0);
544                                 }
545                         }
546                 n=ctx->cipher->block_size-n;
547                 for (i=0; i<n; i++)
548                         out[i]=ctx->final[i];
549                 *outl=n;
550                 }
551         else
552                 *outl=0;
553         return(1);
554         }
555
556 void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *ctx)
557         {
558         if (ctx)
559                 {
560                 EVP_CIPHER_CTX_cleanup(ctx);
561                 OPENSSL_free(ctx);
562                 }
563         }
564
565 int EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *c)
566         {
567 #ifndef OPENSSL_FIPS
568         if (c->cipher != NULL)
569                 {
570                 if(c->cipher->cleanup && !c->cipher->cleanup(c))
571                         return 0;
572                 /* Cleanse cipher context data */
573                 if (c->cipher_data)
574                         OPENSSL_cleanse(c->cipher_data, c->cipher->ctx_size);
575                 }
576         if (c->cipher_data)
577                 OPENSSL_free(c->cipher_data);
578 #endif
579 #ifndef OPENSSL_NO_ENGINE
580         if (c->engine)
581                 /* The EVP_CIPHER we used belongs to an ENGINE, release the
582                  * functional reference we held for this reason. */
583                 ENGINE_finish(c->engine);
584 #endif
585 #ifdef OPENSSL_FIPS
586         FIPS_cipher_ctx_cleanup(c);
587 #endif
588         memset(c,0,sizeof(EVP_CIPHER_CTX));
589         return 1;
590         }
591
592 int EVP_CIPHER_CTX_set_key_length(EVP_CIPHER_CTX *c, int keylen)
593         {
594         if(c->cipher->flags & EVP_CIPH_CUSTOM_KEY_LENGTH) 
595                 return EVP_CIPHER_CTX_ctrl(c, EVP_CTRL_SET_KEY_LENGTH, keylen, NULL);
596         if(c->key_len == keylen) return 1;
597         if((keylen > 0) && (c->cipher->flags & EVP_CIPH_VARIABLE_LENGTH))
598                 {
599                 c->key_len = keylen;
600                 return 1;
601                 }
602         EVPerr(EVP_F_EVP_CIPHER_CTX_SET_KEY_LENGTH,EVP_R_INVALID_KEY_LENGTH);
603         return 0;
604         }
605
606 int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *ctx, int pad)
607         {
608         if (pad) ctx->flags &= ~EVP_CIPH_NO_PADDING;
609         else ctx->flags |= EVP_CIPH_NO_PADDING;
610         return 1;
611         }
612
613 int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr)
614 {
615         int ret;
616         if(!ctx->cipher) {
617                 EVPerr(EVP_F_EVP_CIPHER_CTX_CTRL, EVP_R_NO_CIPHER_SET);
618                 return 0;
619         }
620
621         if(!ctx->cipher->ctrl) {
622                 EVPerr(EVP_F_EVP_CIPHER_CTX_CTRL, EVP_R_CTRL_NOT_IMPLEMENTED);
623                 return 0;
624         }
625
626         ret = ctx->cipher->ctrl(ctx, type, arg, ptr);
627         if(ret == -1) {
628                 EVPerr(EVP_F_EVP_CIPHER_CTX_CTRL, EVP_R_CTRL_OPERATION_NOT_IMPLEMENTED);
629                 return 0;
630         }
631         return ret;
632 }
633
634 int EVP_CIPHER_CTX_rand_key(EVP_CIPHER_CTX *ctx, unsigned char *key)
635         {
636         if (ctx->cipher->flags & EVP_CIPH_RAND_KEY)
637                 return EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_RAND_KEY, 0, key);
638         if (RAND_bytes(key, ctx->key_len) <= 0)
639                 return 0;
640         return 1;
641         }
642
643 int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, const EVP_CIPHER_CTX *in)
644         {
645         if ((in == NULL) || (in->cipher == NULL))
646                 {
647                 EVPerr(EVP_F_EVP_CIPHER_CTX_COPY,EVP_R_INPUT_NOT_INITIALIZED);
648                 return 0;
649                 }
650 #ifndef OPENSSL_NO_ENGINE
651         /* Make sure it's safe to copy a cipher context using an ENGINE */
652         if (in->engine && !ENGINE_init(in->engine))
653                 {
654                 EVPerr(EVP_F_EVP_CIPHER_CTX_COPY,ERR_R_ENGINE_LIB);
655                 return 0;
656                 }
657 #endif
658
659         EVP_CIPHER_CTX_cleanup(out);
660         memcpy(out,in,sizeof *out);
661
662         if (in->cipher_data && in->cipher->ctx_size)
663                 {
664                 out->cipher_data=OPENSSL_malloc(in->cipher->ctx_size);
665                 if (!out->cipher_data)
666                         {
667                         EVPerr(EVP_F_EVP_CIPHER_CTX_COPY,ERR_R_MALLOC_FAILURE);
668                         return 0;
669                         }
670                 memcpy(out->cipher_data,in->cipher_data,in->cipher->ctx_size);
671                 }
672
673         if (in->cipher->flags & EVP_CIPH_CUSTOM_COPY)
674                 return in->cipher->ctrl((EVP_CIPHER_CTX *)in, EVP_CTRL_COPY, 0, out);
675         return 1;
676         }
677