evp_enc.c 16 KB

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