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