Add PKCS7_NO_DUAL_CONTENT flag
[openssl.git] / crypto / pkcs7 / pk7_smime.c
1 /*
2  * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3  * project.
4  */
5 /* ====================================================================
6  * Copyright (c) 1999-2004 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58
59 /* Simple PKCS#7 processing functions */
60
61 #include <stdio.h>
62 #include "internal/cryptlib.h"
63 #include <openssl/x509.h>
64 #include <openssl/x509v3.h>
65
66
67 #define BUFFERSIZE 4096
68
69 static int pkcs7_copy_existing_digest(PKCS7 *p7, PKCS7_SIGNER_INFO *si);
70
71 PKCS7 *PKCS7_sign(X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs,
72                   BIO *data, int flags)
73 {
74     PKCS7 *p7;
75     int i;
76
77     if ((p7 = PKCS7_new()) == NULL) {
78         PKCS7err(PKCS7_F_PKCS7_SIGN, ERR_R_MALLOC_FAILURE);
79         return NULL;
80     }
81
82     if (!PKCS7_set_type(p7, NID_pkcs7_signed))
83         goto err;
84
85     if (!PKCS7_content_new(p7, NID_pkcs7_data))
86         goto err;
87
88     if (pkey && !PKCS7_sign_add_signer(p7, signcert, pkey, NULL, flags)) {
89         PKCS7err(PKCS7_F_PKCS7_SIGN, PKCS7_R_PKCS7_ADD_SIGNER_ERROR);
90         goto err;
91     }
92
93     if (!(flags & PKCS7_NOCERTS)) {
94         for (i = 0; i < sk_X509_num(certs); i++) {
95             if (!PKCS7_add_certificate(p7, sk_X509_value(certs, i)))
96                 goto err;
97         }
98     }
99
100     if (flags & PKCS7_DETACHED)
101         PKCS7_set_detached(p7, 1);
102
103     if (flags & (PKCS7_STREAM | PKCS7_PARTIAL))
104         return p7;
105
106     if (PKCS7_final(p7, data, flags))
107         return p7;
108
109  err:
110     PKCS7_free(p7);
111     return NULL;
112 }
113
114 int PKCS7_final(PKCS7 *p7, BIO *data, int flags)
115 {
116     BIO *p7bio;
117     int ret = 0;
118
119     if ((p7bio = PKCS7_dataInit(p7, NULL)) == NULL) {
120         PKCS7err(PKCS7_F_PKCS7_FINAL, ERR_R_MALLOC_FAILURE);
121         return 0;
122     }
123
124     SMIME_crlf_copy(data, p7bio, flags);
125
126     (void)BIO_flush(p7bio);
127
128     if (!PKCS7_dataFinal(p7, p7bio)) {
129         PKCS7err(PKCS7_F_PKCS7_FINAL, PKCS7_R_PKCS7_DATASIGN);
130         goto err;
131     }
132
133     ret = 1;
134
135  err:
136     BIO_free_all(p7bio);
137
138     return ret;
139
140 }
141
142 /* Check to see if a cipher exists and if so add S/MIME capabilities */
143
144 static int add_cipher_smcap(STACK_OF(X509_ALGOR) *sk, int nid, int arg)
145 {
146     if (EVP_get_cipherbynid(nid))
147         return PKCS7_simple_smimecap(sk, nid, arg);
148     return 1;
149 }
150
151 static int add_digest_smcap(STACK_OF(X509_ALGOR) *sk, int nid, int arg)
152 {
153     if (EVP_get_digestbynid(nid))
154         return PKCS7_simple_smimecap(sk, nid, arg);
155     return 1;
156 }
157
158 PKCS7_SIGNER_INFO *PKCS7_sign_add_signer(PKCS7 *p7, X509 *signcert,
159                                          EVP_PKEY *pkey, const EVP_MD *md,
160                                          int flags)
161 {
162     PKCS7_SIGNER_INFO *si = NULL;
163     STACK_OF(X509_ALGOR) *smcap = NULL;
164     if (!X509_check_private_key(signcert, pkey)) {
165         PKCS7err(PKCS7_F_PKCS7_SIGN_ADD_SIGNER,
166                  PKCS7_R_PRIVATE_KEY_DOES_NOT_MATCH_CERTIFICATE);
167         return NULL;
168     }
169
170     if ((si = PKCS7_add_signature(p7, signcert, pkey, md)) == NULL) {
171         PKCS7err(PKCS7_F_PKCS7_SIGN_ADD_SIGNER,
172                  PKCS7_R_PKCS7_ADD_SIGNATURE_ERROR);
173         return NULL;
174     }
175
176     if (!(flags & PKCS7_NOCERTS)) {
177         if (!PKCS7_add_certificate(p7, signcert))
178             goto err;
179     }
180
181     if (!(flags & PKCS7_NOATTR)) {
182         if (!PKCS7_add_attrib_content_type(si, NULL))
183             goto err;
184         /* Add SMIMECapabilities */
185         if (!(flags & PKCS7_NOSMIMECAP)) {
186             if ((smcap = sk_X509_ALGOR_new_null()) == NULL) {
187                 PKCS7err(PKCS7_F_PKCS7_SIGN_ADD_SIGNER, ERR_R_MALLOC_FAILURE);
188                 goto err;
189             }
190             if (!add_cipher_smcap(smcap, NID_aes_256_cbc, -1)
191                 || !add_digest_smcap(smcap, NID_id_GostR3411_2012_256, -1)
192                 || !add_digest_smcap(smcap, NID_id_GostR3411_2012_512, -1)
193                 || !add_digest_smcap(smcap, NID_id_GostR3411_94, -1)
194                 || !add_cipher_smcap(smcap, NID_id_Gost28147_89, -1)
195                 || !add_cipher_smcap(smcap, NID_aes_192_cbc, -1)
196                 || !add_cipher_smcap(smcap, NID_aes_128_cbc, -1)
197                 || !add_cipher_smcap(smcap, NID_des_ede3_cbc, -1)
198                 || !add_cipher_smcap(smcap, NID_rc2_cbc, 128)
199                 || !add_cipher_smcap(smcap, NID_rc2_cbc, 64)
200                 || !add_cipher_smcap(smcap, NID_des_cbc, -1)
201                 || !add_cipher_smcap(smcap, NID_rc2_cbc, 40)
202                 || !PKCS7_add_attrib_smimecap(si, smcap))
203                 goto err;
204             sk_X509_ALGOR_pop_free(smcap, X509_ALGOR_free);
205             smcap = NULL;
206         }
207         if (flags & PKCS7_REUSE_DIGEST) {
208             if (!pkcs7_copy_existing_digest(p7, si))
209                 goto err;
210             if (!(flags & PKCS7_PARTIAL) && !PKCS7_SIGNER_INFO_sign(si))
211                 goto err;
212         }
213     }
214     return si;
215  err:
216     sk_X509_ALGOR_pop_free(smcap, X509_ALGOR_free);
217     return NULL;
218 }
219
220 /*
221  * Search for a digest matching SignerInfo digest type and if found copy
222  * across.
223  */
224
225 static int pkcs7_copy_existing_digest(PKCS7 *p7, PKCS7_SIGNER_INFO *si)
226 {
227     int i;
228     STACK_OF(PKCS7_SIGNER_INFO) *sinfos;
229     PKCS7_SIGNER_INFO *sitmp;
230     ASN1_OCTET_STRING *osdig = NULL;
231     sinfos = PKCS7_get_signer_info(p7);
232     for (i = 0; i < sk_PKCS7_SIGNER_INFO_num(sinfos); i++) {
233         sitmp = sk_PKCS7_SIGNER_INFO_value(sinfos, i);
234         if (si == sitmp)
235             break;
236         if (sk_X509_ATTRIBUTE_num(sitmp->auth_attr) <= 0)
237             continue;
238         if (!OBJ_cmp(si->digest_alg->algorithm, sitmp->digest_alg->algorithm)) {
239             osdig = PKCS7_digest_from_attributes(sitmp->auth_attr);
240             break;
241         }
242
243     }
244
245     if (osdig)
246         return PKCS7_add1_attrib_digest(si, osdig->data, osdig->length);
247
248     PKCS7err(PKCS7_F_PKCS7_COPY_EXISTING_DIGEST,
249              PKCS7_R_NO_MATCHING_DIGEST_TYPE_FOUND);
250     return 0;
251 }
252
253 int PKCS7_verify(PKCS7 *p7, STACK_OF(X509) *certs, X509_STORE *store,
254                  BIO *indata, BIO *out, int flags)
255 {
256     STACK_OF(X509) *signers;
257     X509 *signer;
258     STACK_OF(PKCS7_SIGNER_INFO) *sinfos;
259     PKCS7_SIGNER_INFO *si;
260     X509_STORE_CTX cert_ctx;
261     char *buf = NULL;
262     int i, j = 0, k, ret = 0;
263     BIO *p7bio = NULL;
264     BIO *tmpin = NULL, *tmpout = NULL;
265
266     if (!p7) {
267         PKCS7err(PKCS7_F_PKCS7_VERIFY, PKCS7_R_INVALID_NULL_POINTER);
268         return 0;
269     }
270
271     if (!PKCS7_type_is_signed(p7)) {
272         PKCS7err(PKCS7_F_PKCS7_VERIFY, PKCS7_R_WRONG_CONTENT_TYPE);
273         return 0;
274     }
275
276     /* Check for no data and no content: no data to verify signature */
277     if (PKCS7_get_detached(p7) && !indata) {
278         PKCS7err(PKCS7_F_PKCS7_VERIFY, PKCS7_R_NO_CONTENT);
279         return 0;
280     }
281
282     if (flags & PKCS7_NO_DUAL_CONTENT) {
283         /*
284          * This was originally "#if 0" because we thought that only old broken
285          * Netscape did this.  It turns out that Authenticode uses this kind
286          * of "extended" PKCS7 format, and things like UEFI secure boot and
287          * tools like osslsigncode need it.  In Authenticode the verification
288          * process is different, but the existing PKCs7 verification works.
289          */
290         if (!PKCS7_get_detached(p7) && indata) {
291             PKCS7err(PKCS7_F_PKCS7_VERIFY, PKCS7_R_CONTENT_AND_DATA_PRESENT);
292             return 0;
293         }
294     }
295
296     sinfos = PKCS7_get_signer_info(p7);
297
298     if (!sinfos || !sk_PKCS7_SIGNER_INFO_num(sinfos)) {
299         PKCS7err(PKCS7_F_PKCS7_VERIFY, PKCS7_R_NO_SIGNATURES_ON_DATA);
300         return 0;
301     }
302
303     signers = PKCS7_get0_signers(p7, certs, flags);
304     if (!signers)
305         return 0;
306
307     /* Now verify the certificates */
308
309     if (!(flags & PKCS7_NOVERIFY))
310         for (k = 0; k < sk_X509_num(signers); k++) {
311             signer = sk_X509_value(signers, k);
312             if (!(flags & PKCS7_NOCHAIN)) {
313                 if (!X509_STORE_CTX_init(&cert_ctx, store, signer,
314                                          p7->d.sign->cert)) {
315                     PKCS7err(PKCS7_F_PKCS7_VERIFY, ERR_R_X509_LIB);
316                     goto err;
317                 }
318                 X509_STORE_CTX_set_default(&cert_ctx, "smime_sign");
319             } else if (!X509_STORE_CTX_init(&cert_ctx, store, signer, NULL)) {
320                 PKCS7err(PKCS7_F_PKCS7_VERIFY, ERR_R_X509_LIB);
321                 goto err;
322             }
323             if (!(flags & PKCS7_NOCRL))
324                 X509_STORE_CTX_set0_crls(&cert_ctx, p7->d.sign->crl);
325             i = X509_verify_cert(&cert_ctx);
326             if (i <= 0)
327                 j = X509_STORE_CTX_get_error(&cert_ctx);
328             X509_STORE_CTX_cleanup(&cert_ctx);
329             if (i <= 0) {
330                 PKCS7err(PKCS7_F_PKCS7_VERIFY,
331                          PKCS7_R_CERTIFICATE_VERIFY_ERROR);
332                 ERR_add_error_data(2, "Verify error:",
333                                    X509_verify_cert_error_string(j));
334                 goto err;
335             }
336             /* Check for revocation status here */
337         }
338
339     /*
340      * Performance optimization: if the content is a memory BIO then store
341      * its contents in a temporary read only memory BIO. This avoids
342      * potentially large numbers of slow copies of data which will occur when
343      * reading from a read write memory BIO when signatures are calculated.
344      */
345
346     if (indata && (BIO_method_type(indata) == BIO_TYPE_MEM)) {
347         char *ptr;
348         long len;
349         len = BIO_get_mem_data(indata, &ptr);
350         tmpin = BIO_new_mem_buf(ptr, len);
351         if (tmpin == NULL) {
352             PKCS7err(PKCS7_F_PKCS7_VERIFY, ERR_R_MALLOC_FAILURE);
353             goto err;
354         }
355     } else
356         tmpin = indata;
357
358     if ((p7bio = PKCS7_dataInit(p7, tmpin)) == NULL)
359         goto err;
360
361     if (flags & PKCS7_TEXT) {
362         if ((tmpout = BIO_new(BIO_s_mem())) == NULL) {
363             PKCS7err(PKCS7_F_PKCS7_VERIFY, ERR_R_MALLOC_FAILURE);
364             goto err;
365         }
366         BIO_set_mem_eof_return(tmpout, 0);
367     } else
368         tmpout = out;
369
370     /* We now have to 'read' from p7bio to calculate digests etc. */
371     if ((buf = OPENSSL_malloc(BUFFERSIZE)) == NULL) {
372         PKCS7err(PKCS7_F_PKCS7_VERIFY, ERR_R_MALLOC_FAILURE);
373         goto err;
374     }
375     for (;;) {
376         i = BIO_read(p7bio, buf, BUFFERSIZE);
377         if (i <= 0)
378             break;
379         if (tmpout)
380             BIO_write(tmpout, buf, i);
381     }
382
383     if (flags & PKCS7_TEXT) {
384         if (!SMIME_text(tmpout, out)) {
385             PKCS7err(PKCS7_F_PKCS7_VERIFY, PKCS7_R_SMIME_TEXT_ERROR);
386             BIO_free(tmpout);
387             goto err;
388         }
389         BIO_free(tmpout);
390     }
391
392     /* Now Verify All Signatures */
393     if (!(flags & PKCS7_NOSIGS))
394         for (i = 0; i < sk_PKCS7_SIGNER_INFO_num(sinfos); i++) {
395             si = sk_PKCS7_SIGNER_INFO_value(sinfos, i);
396             signer = sk_X509_value(signers, i);
397             j = PKCS7_signatureVerify(p7bio, p7, si, signer);
398             if (j <= 0) {
399                 PKCS7err(PKCS7_F_PKCS7_VERIFY, PKCS7_R_SIGNATURE_FAILURE);
400                 goto err;
401             }
402         }
403
404     ret = 1;
405
406  err:
407     OPENSSL_free(buf);
408     if (tmpin == indata) {
409         if (indata)
410             BIO_pop(p7bio);
411     }
412     BIO_free_all(p7bio);
413     sk_X509_free(signers);
414     return ret;
415 }
416
417 STACK_OF(X509) *PKCS7_get0_signers(PKCS7 *p7, STACK_OF(X509) *certs,
418                                    int flags)
419 {
420     STACK_OF(X509) *signers;
421     STACK_OF(PKCS7_SIGNER_INFO) *sinfos;
422     PKCS7_SIGNER_INFO *si;
423     PKCS7_ISSUER_AND_SERIAL *ias;
424     X509 *signer;
425     int i;
426
427     if (!p7) {
428         PKCS7err(PKCS7_F_PKCS7_GET0_SIGNERS, PKCS7_R_INVALID_NULL_POINTER);
429         return NULL;
430     }
431
432     if (!PKCS7_type_is_signed(p7)) {
433         PKCS7err(PKCS7_F_PKCS7_GET0_SIGNERS, PKCS7_R_WRONG_CONTENT_TYPE);
434         return NULL;
435     }
436
437     /* Collect all the signers together */
438
439     sinfos = PKCS7_get_signer_info(p7);
440
441     if (sk_PKCS7_SIGNER_INFO_num(sinfos) <= 0) {
442         PKCS7err(PKCS7_F_PKCS7_GET0_SIGNERS, PKCS7_R_NO_SIGNERS);
443         return 0;
444     }
445
446     if ((signers = sk_X509_new_null()) == NULL) {
447         PKCS7err(PKCS7_F_PKCS7_GET0_SIGNERS, ERR_R_MALLOC_FAILURE);
448         return NULL;
449     }
450
451     for (i = 0; i < sk_PKCS7_SIGNER_INFO_num(sinfos); i++) {
452         si = sk_PKCS7_SIGNER_INFO_value(sinfos, i);
453         ias = si->issuer_and_serial;
454         signer = NULL;
455         /* If any certificates passed they take priority */
456         if (certs)
457             signer = X509_find_by_issuer_and_serial(certs,
458                                                     ias->issuer, ias->serial);
459         if (!signer && !(flags & PKCS7_NOINTERN)
460             && p7->d.sign->cert)
461             signer =
462                 X509_find_by_issuer_and_serial(p7->d.sign->cert,
463                                                ias->issuer, ias->serial);
464         if (!signer) {
465             PKCS7err(PKCS7_F_PKCS7_GET0_SIGNERS,
466                      PKCS7_R_SIGNER_CERTIFICATE_NOT_FOUND);
467             sk_X509_free(signers);
468             return 0;
469         }
470
471         if (!sk_X509_push(signers, signer)) {
472             sk_X509_free(signers);
473             return NULL;
474         }
475     }
476     return signers;
477 }
478
479 /* Build a complete PKCS#7 enveloped data */
480
481 PKCS7 *PKCS7_encrypt(STACK_OF(X509) *certs, BIO *in, const EVP_CIPHER *cipher,
482                      int flags)
483 {
484     PKCS7 *p7;
485     BIO *p7bio = NULL;
486     int i;
487     X509 *x509;
488     if ((p7 = PKCS7_new()) == NULL) {
489         PKCS7err(PKCS7_F_PKCS7_ENCRYPT, ERR_R_MALLOC_FAILURE);
490         return NULL;
491     }
492
493     if (!PKCS7_set_type(p7, NID_pkcs7_enveloped))
494         goto err;
495     if (!PKCS7_set_cipher(p7, cipher)) {
496         PKCS7err(PKCS7_F_PKCS7_ENCRYPT, PKCS7_R_ERROR_SETTING_CIPHER);
497         goto err;
498     }
499
500     for (i = 0; i < sk_X509_num(certs); i++) {
501         x509 = sk_X509_value(certs, i);
502         if (!PKCS7_add_recipient(p7, x509)) {
503             PKCS7err(PKCS7_F_PKCS7_ENCRYPT, PKCS7_R_ERROR_ADDING_RECIPIENT);
504             goto err;
505         }
506     }
507
508     if (flags & PKCS7_STREAM)
509         return p7;
510
511     if (PKCS7_final(p7, in, flags))
512         return p7;
513
514  err:
515
516     BIO_free_all(p7bio);
517     PKCS7_free(p7);
518     return NULL;
519
520 }
521
522 int PKCS7_decrypt(PKCS7 *p7, EVP_PKEY *pkey, X509 *cert, BIO *data, int flags)
523 {
524     BIO *tmpmem;
525     int ret = 0, i;
526     char *buf = NULL;
527
528     if (!p7) {
529         PKCS7err(PKCS7_F_PKCS7_DECRYPT, PKCS7_R_INVALID_NULL_POINTER);
530         return 0;
531     }
532
533     if (!PKCS7_type_is_enveloped(p7)) {
534         PKCS7err(PKCS7_F_PKCS7_DECRYPT, PKCS7_R_WRONG_CONTENT_TYPE);
535         return 0;
536     }
537
538     if (cert && !X509_check_private_key(cert, pkey)) {
539         PKCS7err(PKCS7_F_PKCS7_DECRYPT,
540                  PKCS7_R_PRIVATE_KEY_DOES_NOT_MATCH_CERTIFICATE);
541         return 0;
542     }
543
544     if ((tmpmem = PKCS7_dataDecode(p7, pkey, NULL, cert)) == NULL) {
545         PKCS7err(PKCS7_F_PKCS7_DECRYPT, PKCS7_R_DECRYPT_ERROR);
546         return 0;
547     }
548
549     if (flags & PKCS7_TEXT) {
550         BIO *tmpbuf, *bread;
551         /* Encrypt BIOs can't do BIO_gets() so add a buffer BIO */
552         if ((tmpbuf = BIO_new(BIO_f_buffer())) == NULL) {
553             PKCS7err(PKCS7_F_PKCS7_DECRYPT, ERR_R_MALLOC_FAILURE);
554             BIO_free_all(tmpmem);
555             return 0;
556         }
557         if ((bread = BIO_push(tmpbuf, tmpmem)) == NULL) {
558             PKCS7err(PKCS7_F_PKCS7_DECRYPT, ERR_R_MALLOC_FAILURE);
559             BIO_free_all(tmpbuf);
560             BIO_free_all(tmpmem);
561             return 0;
562         }
563         ret = SMIME_text(bread, data);
564         if (ret > 0 && BIO_method_type(tmpmem) == BIO_TYPE_CIPHER) {
565             if (!BIO_get_cipher_status(tmpmem))
566                 ret = 0;
567         }
568         BIO_free_all(bread);
569         return ret;
570     }
571     if ((buf = OPENSSL_malloc(BUFFERSIZE)) == NULL) {
572         PKCS7err(PKCS7_F_PKCS7_DECRYPT, ERR_R_MALLOC_FAILURE);
573         goto err;
574     }
575     for (;;) {
576         i = BIO_read(tmpmem, buf, BUFFERSIZE);
577         if (i <= 0) {
578             ret = 1;
579             if (BIO_method_type(tmpmem) == BIO_TYPE_CIPHER) {
580                 if (!BIO_get_cipher_status(tmpmem))
581                     ret = 0;
582             }
583
584             break;
585         }
586         if (BIO_write(data, buf, i) != i) {
587             break;
588         }
589     }
590 err:
591     OPENSSL_free(buf);
592     BIO_free_all(tmpmem);
593     return ret;
594 }