1 /* crypto/cms/cms_smime.c */
3 * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
6 /* ====================================================================
7 * Copyright (c) 2008 The OpenSSL Project. All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in
18 * the documentation and/or other materials provided with the
21 * 3. All advertising materials mentioning features or use of this
22 * software must display the following acknowledgment:
23 * "This product includes software developed by the OpenSSL Project
24 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
26 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27 * endorse or promote products derived from this software without
28 * prior written permission. For written permission, please contact
29 * licensing@OpenSSL.org.
31 * 5. Products derived from this software may not be called "OpenSSL"
32 * nor may "OpenSSL" appear in their names without prior written
33 * permission of the OpenSSL Project.
35 * 6. Redistributions of any form whatsoever must retain the following
37 * "This product includes software developed by the OpenSSL Project
38 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
40 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
44 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51 * OF THE POSSIBILITY OF SUCH DAMAGE.
52 * ====================================================================
56 #include <openssl/asn1t.h>
57 #include <openssl/x509.h>
58 #include <openssl/x509v3.h>
59 #include <openssl/err.h>
60 #include <openssl/cms.h>
62 #include "asn1_locl.h"
64 static int cms_copy_content(BIO
*out
, BIO
*in
, unsigned int flags
)
66 unsigned char buf
[4096];
71 tmpout
= BIO_new(BIO_s_null());
72 else if (flags
& CMS_TEXT
) {
73 tmpout
= BIO_new(BIO_s_mem());
74 BIO_set_mem_eof_return(tmpout
, 0);
79 CMSerr(CMS_F_CMS_COPY_CONTENT
, ERR_R_MALLOC_FAILURE
);
83 /* Read all content through chain to process digest, decrypt etc */
85 i
= BIO_read(in
, buf
, sizeof(buf
));
87 if (BIO_method_type(in
) == BIO_TYPE_CIPHER
) {
88 if (!BIO_get_cipher_status(in
))
96 if (tmpout
&& (BIO_write(tmpout
, buf
, i
) != i
))
100 if (flags
& CMS_TEXT
) {
101 if (!SMIME_text(tmpout
, out
)) {
102 CMSerr(CMS_F_CMS_COPY_CONTENT
, CMS_R_SMIME_TEXT_ERROR
);
110 if (tmpout
&& (tmpout
!= out
))
116 static int check_content(CMS_ContentInfo
*cms
)
118 ASN1_OCTET_STRING
**pos
= CMS_get0_content(cms
);
120 CMSerr(CMS_F_CHECK_CONTENT
, CMS_R_NO_CONTENT
);
126 static void do_free_upto(BIO
*f
, BIO
*upto
)
140 int CMS_data(CMS_ContentInfo
*cms
, BIO
*out
, unsigned int flags
)
144 if (OBJ_obj2nid(CMS_get0_type(cms
)) != NID_pkcs7_data
) {
145 CMSerr(CMS_F_CMS_DATA
, CMS_R_TYPE_NOT_DATA
);
148 cont
= CMS_dataInit(cms
, NULL
);
151 r
= cms_copy_content(out
, cont
, flags
);
156 CMS_ContentInfo
*CMS_data_create(BIO
*in
, unsigned int flags
)
158 CMS_ContentInfo
*cms
;
159 cms
= cms_Data_create();
163 if ((flags
& CMS_STREAM
) || CMS_final(cms
, in
, NULL
, flags
))
166 CMS_ContentInfo_free(cms
);
171 int CMS_digest_verify(CMS_ContentInfo
*cms
, BIO
*dcont
, BIO
*out
,
176 if (OBJ_obj2nid(CMS_get0_type(cms
)) != NID_pkcs7_digest
) {
177 CMSerr(CMS_F_CMS_DIGEST_VERIFY
, CMS_R_TYPE_NOT_DIGESTED_DATA
);
181 if (!dcont
&& !check_content(cms
))
184 cont
= CMS_dataInit(cms
, dcont
);
187 r
= cms_copy_content(out
, cont
, flags
);
189 r
= cms_DigestedData_do_final(cms
, cont
, 1);
190 do_free_upto(cont
, dcont
);
194 CMS_ContentInfo
*CMS_digest_create(BIO
*in
, const EVP_MD
*md
,
197 CMS_ContentInfo
*cms
;
200 cms
= cms_DigestedData_create(md
);
204 if (!(flags
& CMS_DETACHED
))
205 CMS_set_detached(cms
, 0);
207 if ((flags
& CMS_STREAM
) || CMS_final(cms
, in
, NULL
, flags
))
210 CMS_ContentInfo_free(cms
);
214 int CMS_EncryptedData_decrypt(CMS_ContentInfo
*cms
,
215 const unsigned char *key
, size_t keylen
,
216 BIO
*dcont
, BIO
*out
, unsigned int flags
)
220 if (OBJ_obj2nid(CMS_get0_type(cms
)) != NID_pkcs7_encrypted
) {
221 CMSerr(CMS_F_CMS_ENCRYPTEDDATA_DECRYPT
,
222 CMS_R_TYPE_NOT_ENCRYPTED_DATA
);
226 if (!dcont
&& !check_content(cms
))
229 if (CMS_EncryptedData_set1_key(cms
, NULL
, key
, keylen
) <= 0)
231 cont
= CMS_dataInit(cms
, dcont
);
234 r
= cms_copy_content(out
, cont
, flags
);
235 do_free_upto(cont
, dcont
);
239 CMS_ContentInfo
*CMS_EncryptedData_encrypt(BIO
*in
, const EVP_CIPHER
*cipher
,
240 const unsigned char *key
,
241 size_t keylen
, unsigned int flags
)
243 CMS_ContentInfo
*cms
;
245 CMSerr(CMS_F_CMS_ENCRYPTEDDATA_ENCRYPT
, CMS_R_NO_CIPHER
);
248 cms
= CMS_ContentInfo_new();
251 if (!CMS_EncryptedData_set1_key(cms
, cipher
, key
, keylen
))
254 if (!(flags
& CMS_DETACHED
))
255 CMS_set_detached(cms
, 0);
257 if ((flags
& (CMS_STREAM
| CMS_PARTIAL
))
258 || CMS_final(cms
, in
, NULL
, flags
))
261 CMS_ContentInfo_free(cms
);
265 static int cms_signerinfo_verify_cert(CMS_SignerInfo
*si
,
267 STACK_OF(X509
) *certs
,
268 STACK_OF(X509_CRL
) *crls
,
274 CMS_SignerInfo_get0_algs(si
, NULL
, &signer
, NULL
, NULL
);
275 if (!X509_STORE_CTX_init(&ctx
, store
, signer
, certs
)) {
276 CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY_CERT
, CMS_R_STORE_INIT_ERROR
);
279 X509_STORE_CTX_set_default(&ctx
, "smime_sign");
281 X509_STORE_CTX_set0_crls(&ctx
, crls
);
283 i
= X509_verify_cert(&ctx
);
285 j
= X509_STORE_CTX_get_error(&ctx
);
286 CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY_CERT
,
287 CMS_R_CERTIFICATE_VERIFY_ERROR
);
288 ERR_add_error_data(2, "Verify error:",
289 X509_verify_cert_error_string(j
));
294 X509_STORE_CTX_cleanup(&ctx
);
299 int CMS_verify(CMS_ContentInfo
*cms
, STACK_OF(X509
) *certs
,
300 X509_STORE
*store
, BIO
*dcont
, BIO
*out
, unsigned int flags
)
303 STACK_OF(CMS_SignerInfo
) *sinfos
;
304 STACK_OF(X509
) *cms_certs
= NULL
;
305 STACK_OF(X509_CRL
) *crls
= NULL
;
307 int i
, scount
= 0, ret
= 0;
308 BIO
*cmsbio
= NULL
, *tmpin
= NULL
;
310 if (!dcont
&& !check_content(cms
))
313 /* Attempt to find all signer certificates */
315 sinfos
= CMS_get0_SignerInfos(cms
);
317 if (sk_CMS_SignerInfo_num(sinfos
) <= 0) {
318 CMSerr(CMS_F_CMS_VERIFY
, CMS_R_NO_SIGNERS
);
322 for (i
= 0; i
< sk_CMS_SignerInfo_num(sinfos
); i
++) {
323 si
= sk_CMS_SignerInfo_value(sinfos
, i
);
324 CMS_SignerInfo_get0_algs(si
, NULL
, &signer
, NULL
, NULL
);
329 if (scount
!= sk_CMS_SignerInfo_num(sinfos
))
330 scount
+= CMS_set1_signers_certs(cms
, certs
, flags
);
332 if (scount
!= sk_CMS_SignerInfo_num(sinfos
)) {
333 CMSerr(CMS_F_CMS_VERIFY
, CMS_R_SIGNER_CERTIFICATE_NOT_FOUND
);
337 /* Attempt to verify all signers certs */
339 if (!(flags
& CMS_NO_SIGNER_CERT_VERIFY
)) {
340 cms_certs
= CMS_get1_certs(cms
);
341 if (!(flags
& CMS_NOCRL
))
342 crls
= CMS_get1_crls(cms
);
343 for (i
= 0; i
< sk_CMS_SignerInfo_num(sinfos
); i
++) {
344 si
= sk_CMS_SignerInfo_value(sinfos
, i
);
345 if (!cms_signerinfo_verify_cert(si
, store
,
346 cms_certs
, crls
, flags
))
351 /* Attempt to verify all SignerInfo signed attribute signatures */
353 if (!(flags
& CMS_NO_ATTR_VERIFY
)) {
354 for (i
= 0; i
< sk_CMS_SignerInfo_num(sinfos
); i
++) {
355 si
= sk_CMS_SignerInfo_value(sinfos
, i
);
356 if (CMS_signed_get_attr_count(si
) < 0)
358 if (CMS_SignerInfo_verify(si
) <= 0)
364 * Performance optimization: if the content is a memory BIO then store
365 * its contents in a temporary read only memory BIO. This avoids
366 * potentially large numbers of slow copies of data which will occur when
367 * reading from a read write memory BIO when signatures are calculated.
370 if (dcont
&& (BIO_method_type(dcont
) == BIO_TYPE_MEM
)) {
373 len
= BIO_get_mem_data(dcont
, &ptr
);
374 tmpin
= BIO_new_mem_buf(ptr
, len
);
376 CMSerr(CMS_F_CMS_VERIFY
, ERR_R_MALLOC_FAILURE
);
382 cmsbio
= CMS_dataInit(cms
, tmpin
);
386 if (!cms_copy_content(out
, cmsbio
, flags
))
389 if (!(flags
& CMS_NO_CONTENT_VERIFY
)) {
390 for (i
= 0; i
< sk_CMS_SignerInfo_num(sinfos
); i
++) {
391 si
= sk_CMS_SignerInfo_value(sinfos
, i
);
392 if (CMS_SignerInfo_verify_content(si
, cmsbio
) <= 0) {
393 CMSerr(CMS_F_CMS_VERIFY
, CMS_R_CONTENT_VERIFY_ERROR
);
403 if (dcont
&& (tmpin
== dcont
))
404 do_free_upto(cmsbio
, dcont
);
406 BIO_free_all(cmsbio
);
409 sk_X509_pop_free(cms_certs
, X509_free
);
411 sk_X509_CRL_pop_free(crls
, X509_CRL_free
);
416 int CMS_verify_receipt(CMS_ContentInfo
*rcms
, CMS_ContentInfo
*ocms
,
417 STACK_OF(X509
) *certs
,
418 X509_STORE
*store
, unsigned int flags
)
421 flags
&= ~(CMS_DETACHED
| CMS_TEXT
);
422 r
= CMS_verify(rcms
, certs
, store
, NULL
, NULL
, flags
);
425 return cms_Receipt_verify(rcms
, ocms
);
428 CMS_ContentInfo
*CMS_sign(X509
*signcert
, EVP_PKEY
*pkey
,
429 STACK_OF(X509
) *certs
, BIO
*data
,
432 CMS_ContentInfo
*cms
;
435 cms
= CMS_ContentInfo_new();
436 if (!cms
|| !CMS_SignedData_init(cms
))
439 if (pkey
&& !CMS_add1_signer(cms
, signcert
, pkey
, NULL
, flags
)) {
440 CMSerr(CMS_F_CMS_SIGN
, CMS_R_ADD_SIGNER_ERROR
);
444 for (i
= 0; i
< sk_X509_num(certs
); i
++) {
445 X509
*x
= sk_X509_value(certs
, i
);
446 if (!CMS_add1_cert(cms
, x
))
450 if (!(flags
& CMS_DETACHED
))
451 CMS_set_detached(cms
, 0);
453 if ((flags
& (CMS_STREAM
| CMS_PARTIAL
))
454 || CMS_final(cms
, data
, NULL
, flags
))
460 CMSerr(CMS_F_CMS_SIGN
, ERR_R_MALLOC_FAILURE
);
464 CMS_ContentInfo_free(cms
);
468 CMS_ContentInfo
*CMS_sign_receipt(CMS_SignerInfo
*si
,
469 X509
*signcert
, EVP_PKEY
*pkey
,
470 STACK_OF(X509
) *certs
, unsigned int flags
)
472 CMS_SignerInfo
*rct_si
;
473 CMS_ContentInfo
*cms
= NULL
;
474 ASN1_OCTET_STRING
**pos
, *os
;
475 BIO
*rct_cont
= NULL
;
478 flags
&= ~(CMS_STREAM
| CMS_TEXT
);
479 /* Not really detached but avoids content being allocated */
480 flags
|= CMS_PARTIAL
| CMS_BINARY
| CMS_DETACHED
;
481 if (!pkey
|| !signcert
) {
482 CMSerr(CMS_F_CMS_SIGN_RECEIPT
, CMS_R_NO_KEY_OR_CERT
);
486 /* Initialize signed data */
488 cms
= CMS_sign(NULL
, NULL
, certs
, NULL
, flags
);
492 /* Set inner content type to signed receipt */
493 if (!CMS_set1_eContentType(cms
, OBJ_nid2obj(NID_id_smime_ct_receipt
)))
496 rct_si
= CMS_add1_signer(cms
, signcert
, pkey
, NULL
, flags
);
498 CMSerr(CMS_F_CMS_SIGN_RECEIPT
, CMS_R_ADD_SIGNER_ERROR
);
502 os
= cms_encode_Receipt(si
);
507 /* Set content to digest */
508 rct_cont
= BIO_new_mem_buf(os
->data
, os
->length
);
512 /* Add msgSigDigest attribute */
514 if (!cms_msgSigDigest_add1(rct_si
, si
))
517 /* Finalize structure */
518 if (!CMS_final(cms
, rct_cont
, NULL
, flags
))
521 /* Set embedded content */
522 pos
= CMS_get0_content(cms
);
532 CMS_ContentInfo_free(cms
);
537 CMS_ContentInfo
*CMS_encrypt(STACK_OF(X509
) *certs
, BIO
*data
,
538 const EVP_CIPHER
*cipher
, unsigned int flags
)
540 CMS_ContentInfo
*cms
;
543 cms
= CMS_EnvelopedData_create(cipher
);
546 for (i
= 0; i
< sk_X509_num(certs
); i
++) {
547 recip
= sk_X509_value(certs
, i
);
548 if (!CMS_add1_recipient_cert(cms
, recip
, flags
)) {
549 CMSerr(CMS_F_CMS_ENCRYPT
, CMS_R_RECIPIENT_ERROR
);
554 if (!(flags
& CMS_DETACHED
))
555 CMS_set_detached(cms
, 0);
557 if ((flags
& (CMS_STREAM
| CMS_PARTIAL
))
558 || CMS_final(cms
, data
, NULL
, flags
))
564 CMSerr(CMS_F_CMS_ENCRYPT
, ERR_R_MALLOC_FAILURE
);
567 CMS_ContentInfo_free(cms
);
571 static int cms_kari_set1_pkey(CMS_ContentInfo
*cms
, CMS_RecipientInfo
*ri
,
572 EVP_PKEY
*pk
, X509
*cert
)
575 STACK_OF(CMS_RecipientEncryptedKey
) *reks
;
576 CMS_RecipientEncryptedKey
*rek
;
577 reks
= CMS_RecipientInfo_kari_get0_reks(ri
);
580 for (i
= 0; i
< sk_CMS_RecipientEncryptedKey_num(reks
); i
++) {
582 rek
= sk_CMS_RecipientEncryptedKey_value(reks
, i
);
583 if (CMS_RecipientEncryptedKey_cert_cmp(rek
, cert
))
585 CMS_RecipientInfo_kari_set0_pkey(ri
, pk
);
586 rv
= CMS_RecipientInfo_kari_decrypt(cms
, ri
, rek
);
587 CMS_RecipientInfo_kari_set0_pkey(ri
, NULL
);
595 int CMS_decrypt_set1_pkey(CMS_ContentInfo
*cms
, EVP_PKEY
*pk
, X509
*cert
)
597 STACK_OF(CMS_RecipientInfo
) *ris
;
598 CMS_RecipientInfo
*ri
;
600 int debug
= 0, match_ri
= 0;
601 ris
= CMS_get0_RecipientInfos(cms
);
603 debug
= cms
->d
.envelopedData
->encryptedContentInfo
->debug
;
604 ri_type
= cms_pkey_get_ri_type(pk
);
605 if (ri_type
== CMS_RECIPINFO_NONE
) {
606 CMSerr(CMS_F_CMS_DECRYPT_SET1_PKEY
,
607 CMS_R_NOT_SUPPORTED_FOR_THIS_KEY_TYPE
);
611 for (i
= 0; i
< sk_CMS_RecipientInfo_num(ris
); i
++) {
612 ri
= sk_CMS_RecipientInfo_value(ris
, i
);
613 if (CMS_RecipientInfo_type(ri
) != ri_type
)
616 if (ri_type
== CMS_RECIPINFO_AGREE
) {
617 r
= cms_kari_set1_pkey(cms
, ri
, pk
, cert
);
624 * If we have a cert try matching RecipientInfo otherwise try them
627 else if (!cert
|| !CMS_RecipientInfo_ktri_cert_cmp(ri
, cert
)) {
628 CMS_RecipientInfo_set0_pkey(ri
, pk
);
629 r
= CMS_RecipientInfo_decrypt(cms
, ri
);
630 CMS_RecipientInfo_set0_pkey(ri
, NULL
);
633 * If not debugging clear any error and return success to
634 * avoid leaking of information useful to MMA
642 CMSerr(CMS_F_CMS_DECRYPT_SET1_PKEY
, CMS_R_DECRYPT_ERROR
);
646 * If no cert and not debugging don't leave loop after first
647 * successful decrypt. Always attempt to decrypt all recipients
648 * to avoid leaking timing of a successful decrypt.
650 else if (r
> 0 && debug
)
654 /* If no cert and not debugging always return success */
655 if (match_ri
&& !cert
&& !debug
) {
660 CMSerr(CMS_F_CMS_DECRYPT_SET1_PKEY
, CMS_R_NO_MATCHING_RECIPIENT
);
665 int CMS_decrypt_set1_key(CMS_ContentInfo
*cms
,
666 unsigned char *key
, size_t keylen
,
667 unsigned char *id
, size_t idlen
)
669 STACK_OF(CMS_RecipientInfo
) *ris
;
670 CMS_RecipientInfo
*ri
;
672 ris
= CMS_get0_RecipientInfos(cms
);
673 for (i
= 0; i
< sk_CMS_RecipientInfo_num(ris
); i
++) {
674 ri
= sk_CMS_RecipientInfo_value(ris
, i
);
675 if (CMS_RecipientInfo_type(ri
) != CMS_RECIPINFO_KEK
)
679 * If we have an id try matching RecipientInfo otherwise try them
682 if (!id
|| (CMS_RecipientInfo_kekri_id_cmp(ri
, id
, idlen
) == 0)) {
683 CMS_RecipientInfo_set0_key(ri
, key
, keylen
);
684 r
= CMS_RecipientInfo_decrypt(cms
, ri
);
685 CMS_RecipientInfo_set0_key(ri
, NULL
, 0);
689 CMSerr(CMS_F_CMS_DECRYPT_SET1_KEY
, CMS_R_DECRYPT_ERROR
);
696 CMSerr(CMS_F_CMS_DECRYPT_SET1_KEY
, CMS_R_NO_MATCHING_RECIPIENT
);
701 int CMS_decrypt_set1_password(CMS_ContentInfo
*cms
,
702 unsigned char *pass
, ossl_ssize_t passlen
)
704 STACK_OF(CMS_RecipientInfo
) *ris
;
705 CMS_RecipientInfo
*ri
;
707 ris
= CMS_get0_RecipientInfos(cms
);
708 for (i
= 0; i
< sk_CMS_RecipientInfo_num(ris
); i
++) {
709 ri
= sk_CMS_RecipientInfo_value(ris
, i
);
710 if (CMS_RecipientInfo_type(ri
) != CMS_RECIPINFO_PASS
)
712 CMS_RecipientInfo_set0_password(ri
, pass
, passlen
);
713 r
= CMS_RecipientInfo_decrypt(cms
, ri
);
714 CMS_RecipientInfo_set0_password(ri
, NULL
, 0);
719 CMSerr(CMS_F_CMS_DECRYPT_SET1_PASSWORD
, CMS_R_NO_MATCHING_RECIPIENT
);
724 int CMS_decrypt(CMS_ContentInfo
*cms
, EVP_PKEY
*pk
, X509
*cert
,
725 BIO
*dcont
, BIO
*out
, unsigned int flags
)
729 if (OBJ_obj2nid(CMS_get0_type(cms
)) != NID_pkcs7_enveloped
) {
730 CMSerr(CMS_F_CMS_DECRYPT
, CMS_R_TYPE_NOT_ENVELOPED_DATA
);
733 if (!dcont
&& !check_content(cms
))
735 if (flags
& CMS_DEBUG_DECRYPT
)
736 cms
->d
.envelopedData
->encryptedContentInfo
->debug
= 1;
738 cms
->d
.envelopedData
->encryptedContentInfo
->debug
= 0;
739 if (!pk
&& !cert
&& !dcont
&& !out
)
741 if (pk
&& !CMS_decrypt_set1_pkey(cms
, pk
, cert
))
743 cont
= CMS_dataInit(cms
, dcont
);
746 r
= cms_copy_content(out
, cont
, flags
);
747 do_free_upto(cont
, dcont
);
751 int CMS_final(CMS_ContentInfo
*cms
, BIO
*data
, BIO
*dcont
, unsigned int flags
)
755 if (!(cmsbio
= CMS_dataInit(cms
, dcont
))) {
756 CMSerr(CMS_F_CMS_FINAL
, ERR_R_MALLOC_FAILURE
);
760 SMIME_crlf_copy(data
, cmsbio
, flags
);
762 (void)BIO_flush(cmsbio
);
764 if (!CMS_dataFinal(cms
, cmsbio
)) {
765 CMSerr(CMS_F_CMS_FINAL
, CMS_R_CMS_DATAFINAL_ERROR
);
772 do_free_upto(cmsbio
, dcont
);
780 int CMS_uncompress(CMS_ContentInfo
*cms
, BIO
*dcont
, BIO
*out
,
785 if (OBJ_obj2nid(CMS_get0_type(cms
)) != NID_id_smime_ct_compressedData
) {
786 CMSerr(CMS_F_CMS_UNCOMPRESS
, CMS_R_TYPE_NOT_COMPRESSED_DATA
);
790 if (!dcont
&& !check_content(cms
))
793 cont
= CMS_dataInit(cms
, dcont
);
796 r
= cms_copy_content(out
, cont
, flags
);
797 do_free_upto(cont
, dcont
);
801 CMS_ContentInfo
*CMS_compress(BIO
*in
, int comp_nid
, unsigned int flags
)
803 CMS_ContentInfo
*cms
;
805 comp_nid
= NID_zlib_compression
;
806 cms
= cms_CompressedData_create(comp_nid
);
810 if (!(flags
& CMS_DETACHED
))
811 CMS_set_detached(cms
, 0);
813 if ((flags
& CMS_STREAM
) || CMS_final(cms
, in
, NULL
, flags
))
816 CMS_ContentInfo_free(cms
);
822 int CMS_uncompress(CMS_ContentInfo
*cms
, BIO
*dcont
, BIO
*out
,
825 CMSerr(CMS_F_CMS_UNCOMPRESS
, CMS_R_UNSUPPORTED_COMPRESSION_ALGORITHM
);
829 CMS_ContentInfo
*CMS_compress(BIO
*in
, int comp_nid
, unsigned int flags
)
831 CMSerr(CMS_F_CMS_COMPRESS
, CMS_R_UNSUPPORTED_COMPRESSION_ALGORITHM
);