2 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
5 /* ====================================================================
6 * Copyright (c) 2008 The OpenSSL Project. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
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
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/)"
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.
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.
34 * 6. Redistributions of any form whatsoever must retain the following
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
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 * ====================================================================
54 /* CMS utility function */
60 #ifndef OPENSSL_NO_CMS
62 #include <openssl/crypto.h>
63 #include <openssl/pem.h>
64 #include <openssl/err.h>
65 #include <openssl/x509_vfy.h>
66 #include <openssl/x509v3.h>
67 #include <openssl/cms.h>
71 static int save_certs(char *signerfile, STACK_OF(X509) *signers);
72 static int cms_cb(int ok, X509_STORE_CTX *ctx);
73 static void receipt_request_print(BIO *out, CMS_ContentInfo *cms);
74 static CMS_ReceiptRequest *make_receipt_request(STACK *rr_to, int rr_allorfirst,
79 #define SMIME_SIGNERS 0x40
80 #define SMIME_ENCRYPT (1 | SMIME_OP)
81 #define SMIME_DECRYPT (2 | SMIME_IP)
82 #define SMIME_SIGN (3 | SMIME_OP | SMIME_SIGNERS)
83 #define SMIME_VERIFY (4 | SMIME_IP)
84 #define SMIME_CMSOUT (5 | SMIME_IP | SMIME_OP)
85 #define SMIME_RESIGN (6 | SMIME_IP | SMIME_OP | SMIME_SIGNERS)
86 #define SMIME_DATAOUT (7 | SMIME_IP)
87 #define SMIME_DATA_CREATE (8 | SMIME_OP)
88 #define SMIME_DIGEST_VERIFY (9 | SMIME_IP)
89 #define SMIME_DIGEST_CREATE (10 | SMIME_OP)
90 #define SMIME_UNCOMPRESS (11 | SMIME_IP)
91 #define SMIME_COMPRESS (12 | SMIME_OP)
92 #define SMIME_ENCRYPTED_DECRYPT (13 | SMIME_IP)
93 #define SMIME_ENCRYPTED_ENCRYPT (14 | SMIME_OP)
94 #define SMIME_SIGN_RECEIPT (15 | SMIME_IP | SMIME_OP)
95 #define SMIME_VERIFY_RECEIPT (16 | SMIME_IP)
97 int MAIN(int, char **);
99 int MAIN(int argc, char **argv)
105 const char *inmode = "r", *outmode = "w";
106 char *infile = NULL, *outfile = NULL, *rctfile = NULL;
107 char *signerfile = NULL, *recipfile = NULL;
108 STACK *sksigners = NULL, *skkeys = NULL;
109 char *certfile = NULL, *keyfile = NULL, *contfile=NULL;
110 const EVP_CIPHER *cipher = NULL;
111 CMS_ContentInfo *cms = NULL, *rcms = NULL;
112 X509_STORE *store = NULL;
113 X509 *cert = NULL, *recip = NULL, *signer = NULL;
114 EVP_PKEY *key = NULL;
115 STACK_OF(X509) *encerts = NULL, *other = NULL;
116 BIO *in = NULL, *out = NULL, *indata = NULL, *rctin = NULL;
118 int flags = CMS_DETACHED, noout = 0, print = 0;
119 int rr_print = 0, rr_allorfirst = -1;
120 STACK *rr_to = NULL, *rr_from = NULL;
121 CMS_ReceiptRequest *rr = NULL;
122 char *to = NULL, *from = NULL, *subject = NULL;
123 char *CAfile = NULL, *CApath = NULL;
124 char *passargin = NULL, *passin = NULL;
127 const EVP_MD *sign_md = NULL;
128 int informat = FORMAT_SMIME, outformat = FORMAT_SMIME;
129 int rctformat = FORMAT_SMIME, keyform = FORMAT_PEM;
130 #ifndef OPENSSL_NO_ENGINE
133 unsigned char *secret_key = NULL, *secret_keyid = NULL;
134 size_t secret_keylen = 0, secret_keyidlen = 0;
136 ASN1_OBJECT *econtent_type = NULL;
138 X509_VERIFY_PARAM *vpm = NULL;
147 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
148 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE|BIO_FP_TEXT);
151 if (!load_config(bio_err, NULL))
154 while (!badarg && *args && *args[0] == '-')
156 if (!strcmp (*args, "-encrypt"))
157 operation = SMIME_ENCRYPT;
158 else if (!strcmp (*args, "-decrypt"))
159 operation = SMIME_DECRYPT;
160 else if (!strcmp (*args, "-sign"))
161 operation = SMIME_SIGN;
162 else if (!strcmp (*args, "-sign_receipt"))
163 operation = SMIME_SIGN_RECEIPT;
164 else if (!strcmp (*args, "-resign"))
165 operation = SMIME_RESIGN;
166 else if (!strcmp (*args, "-verify"))
167 operation = SMIME_VERIFY;
168 else if (!strcmp(*args,"-verify_receipt"))
170 operation = SMIME_VERIFY_RECEIPT;
176 else if (!strcmp (*args, "-cmsout"))
177 operation = SMIME_CMSOUT;
178 else if (!strcmp (*args, "-data_out"))
179 operation = SMIME_DATAOUT;
180 else if (!strcmp (*args, "-data_create"))
181 operation = SMIME_DATA_CREATE;
182 else if (!strcmp (*args, "-digest_verify"))
183 operation = SMIME_DIGEST_VERIFY;
184 else if (!strcmp (*args, "-digest_create"))
185 operation = SMIME_DIGEST_CREATE;
186 else if (!strcmp (*args, "-compress"))
187 operation = SMIME_COMPRESS;
188 else if (!strcmp (*args, "-uncompress"))
189 operation = SMIME_UNCOMPRESS;
190 else if (!strcmp (*args, "-EncryptedData_decrypt"))
191 operation = SMIME_ENCRYPTED_DECRYPT;
192 else if (!strcmp (*args, "-EncryptedData_encrypt"))
193 operation = SMIME_ENCRYPTED_ENCRYPT;
194 #ifndef OPENSSL_NO_DES
195 else if (!strcmp (*args, "-des3"))
196 cipher = EVP_des_ede3_cbc();
197 else if (!strcmp (*args, "-des"))
198 cipher = EVP_des_cbc();
200 #ifndef OPENSSL_NO_SEED
201 else if (!strcmp (*args, "-seed"))
202 cipher = EVP_seed_cbc();
204 #ifndef OPENSSL_NO_RC2
205 else if (!strcmp (*args, "-rc2-40"))
206 cipher = EVP_rc2_40_cbc();
207 else if (!strcmp (*args, "-rc2-128"))
208 cipher = EVP_rc2_cbc();
209 else if (!strcmp (*args, "-rc2-64"))
210 cipher = EVP_rc2_64_cbc();
212 #ifndef OPENSSL_NO_AES
213 else if (!strcmp(*args,"-aes128"))
214 cipher = EVP_aes_128_cbc();
215 else if (!strcmp(*args,"-aes192"))
216 cipher = EVP_aes_192_cbc();
217 else if (!strcmp(*args,"-aes256"))
218 cipher = EVP_aes_256_cbc();
220 #ifndef OPENSSL_NO_CAMELLIA
221 else if (!strcmp(*args,"-camellia128"))
222 cipher = EVP_camellia_128_cbc();
223 else if (!strcmp(*args,"-camellia192"))
224 cipher = EVP_camellia_192_cbc();
225 else if (!strcmp(*args,"-camellia256"))
226 cipher = EVP_camellia_256_cbc();
228 else if (!strcmp (*args, "-text"))
230 else if (!strcmp (*args, "-nointern"))
231 flags |= CMS_NOINTERN;
232 else if (!strcmp (*args, "-noverify")
233 || !strcmp (*args, "-no_signer_cert_verify"))
234 flags |= CMS_NO_SIGNER_CERT_VERIFY;
235 else if (!strcmp (*args, "-nocerts"))
236 flags |= CMS_NOCERTS;
237 else if (!strcmp (*args, "-noattr"))
239 else if (!strcmp (*args, "-nodetach"))
240 flags &= ~CMS_DETACHED;
241 else if (!strcmp (*args, "-nosmimecap"))
242 flags |= CMS_NOSMIMECAP;
243 else if (!strcmp (*args, "-binary"))
245 else if (!strcmp (*args, "-keyid"))
246 flags |= CMS_USE_KEYID;
247 else if (!strcmp (*args, "-nosigs"))
249 else if (!strcmp (*args, "-no_content_verify"))
250 flags |= CMS_NO_CONTENT_VERIFY;
251 else if (!strcmp (*args, "-no_attr_verify"))
252 flags |= CMS_NO_ATTR_VERIFY;
253 else if (!strcmp (*args, "-stream"))
255 else if (!strcmp (*args, "-indef"))
257 else if (!strcmp (*args, "-noindef"))
258 flags &= ~CMS_STREAM;
259 else if (!strcmp (*args, "-nooldmime"))
260 flags |= CMS_NOOLDMIMETYPE;
261 else if (!strcmp (*args, "-crlfeol"))
262 flags |= CMS_CRLFEOL;
263 else if (!strcmp (*args, "-noout"))
265 else if (!strcmp (*args, "-receipt_request_print"))
267 else if (!strcmp (*args, "-receipt_request_all"))
269 else if (!strcmp (*args, "-receipt_request_first"))
271 else if (!strcmp(*args,"-receipt_request_from"))
277 rr_from = sk_new_null();
278 sk_push(rr_from, *args);
280 else if (!strcmp(*args,"-receipt_request_to"))
286 rr_to = sk_new_null();
287 sk_push(rr_to, *args);
289 else if (!strcmp (*args, "-print"))
294 else if (!strcmp(*args,"-secretkey"))
300 secret_key = string_to_hex(*args, <mp);
303 BIO_printf(bio_err, "Invalid key %s\n", *args);
306 secret_keylen = (size_t)ltmp;
308 else if (!strcmp(*args,"-secretkeyid"))
314 secret_keyid = string_to_hex(*args, <mp);
317 BIO_printf(bio_err, "Invalid id %s\n", *args);
320 secret_keyidlen = (size_t)ltmp;
322 else if (!strcmp(*args,"-econtent_type"))
327 econtent_type = OBJ_txt2obj(*args, 0);
330 BIO_printf(bio_err, "Invalid OID %s\n", *args);
334 else if (!strcmp(*args,"-rand"))
342 #ifndef OPENSSL_NO_ENGINE
343 else if (!strcmp(*args,"-engine"))
350 else if (!strcmp(*args,"-passin"))
356 else if (!strcmp (*args, "-to"))
362 else if (!strcmp (*args, "-from"))
368 else if (!strcmp (*args, "-subject"))
374 else if (!strcmp (*args, "-signer"))
378 /* If previous -signer argument add signer to list */
383 sksigners = sk_new_null();
384 sk_push(sksigners, signerfile);
386 keyfile = signerfile;
388 skkeys = sk_new_null();
389 sk_push(skkeys, keyfile);
392 signerfile = *++args;
394 else if (!strcmp (*args, "-recip"))
400 else if (!strcmp (*args, "-md"))
404 sign_md = EVP_get_digestbyname(*++args);
407 BIO_printf(bio_err, "Unknown digest %s\n",
412 else if (!strcmp (*args, "-inkey"))
416 /* If previous -inkey arument add signer to list */
421 BIO_puts(bio_err, "Illegal -inkey without -signer\n");
425 sksigners = sk_new_null();
426 sk_push(sksigners, signerfile);
429 skkeys = sk_new_null();
430 sk_push(skkeys, keyfile);
434 else if (!strcmp (*args, "-keyform"))
438 keyform = str2fmt(*++args);
440 else if (!strcmp (*args, "-rctform"))
444 rctformat = str2fmt(*++args);
446 else if (!strcmp (*args, "-certfile"))
452 else if (!strcmp (*args, "-CAfile"))
458 else if (!strcmp (*args, "-CApath"))
464 else if (!strcmp (*args, "-in"))
470 else if (!strcmp (*args, "-inform"))
474 informat = str2fmt(*++args);
476 else if (!strcmp (*args, "-outform"))
480 outformat = str2fmt(*++args);
482 else if (!strcmp (*args, "-out"))
488 else if (!strcmp (*args, "-content"))
494 else if (args_verify(&args, NULL, &badarg, bio_err, &vpm))
496 else if ((cipher = EVP_get_cipherbyname(*args + 1)) == NULL)
501 if (((rr_allorfirst != -1) || rr_from) && !rr_to)
503 BIO_puts(bio_err, "No Signed Receipts Recipients\n");
507 if (!(operation & SMIME_SIGNERS) && (rr_to || rr_from))
509 BIO_puts(bio_err, "Signed receipts only allowed with -sign\n");
512 if (!(operation & SMIME_SIGNERS) && (skkeys || sksigners))
514 BIO_puts(bio_err, "Multiple signers or keys not allowed\n");
518 if (operation & SMIME_SIGNERS)
520 if (keyfile && !signerfile)
522 BIO_puts(bio_err, "Illegal -inkey without -signer\n");
525 /* Check to see if any final signer needs to be appended */
529 sksigners = sk_new_null();
530 sk_push(sksigners, signerfile);
532 skkeys = sk_new_null();
534 keyfile = signerfile;
535 sk_push(skkeys, keyfile);
539 BIO_printf(bio_err, "No signer certificate specified\n");
547 else if (operation == SMIME_DECRYPT)
549 if (!recipfile && !keyfile && !secret_key)
551 BIO_printf(bio_err, "No recipient certificate or key specified\n");
555 else if (operation == SMIME_ENCRYPT)
557 if (!*args && !secret_key)
559 BIO_printf(bio_err, "No recipient(s) certificate(s) specified\n");
570 BIO_printf (bio_err, "Usage cms [options] cert.pem ...\n");
571 BIO_printf (bio_err, "where options are\n");
572 BIO_printf (bio_err, "-encrypt encrypt message\n");
573 BIO_printf (bio_err, "-decrypt decrypt encrypted message\n");
574 BIO_printf (bio_err, "-sign sign message\n");
575 BIO_printf (bio_err, "-verify verify signed message\n");
576 BIO_printf (bio_err, "-cmsout output CMS structure\n");
577 #ifndef OPENSSL_NO_DES
578 BIO_printf (bio_err, "-des3 encrypt with triple DES\n");
579 BIO_printf (bio_err, "-des encrypt with DES\n");
581 #ifndef OPENSSL_NO_SEED
582 BIO_printf (bio_err, "-seed encrypt with SEED\n");
584 #ifndef OPENSSL_NO_RC2
585 BIO_printf (bio_err, "-rc2-40 encrypt with RC2-40 (default)\n");
586 BIO_printf (bio_err, "-rc2-64 encrypt with RC2-64\n");
587 BIO_printf (bio_err, "-rc2-128 encrypt with RC2-128\n");
589 #ifndef OPENSSL_NO_AES
590 BIO_printf (bio_err, "-aes128, -aes192, -aes256\n");
591 BIO_printf (bio_err, " encrypt PEM output with cbc aes\n");
593 #ifndef OPENSSL_NO_CAMELLIA
594 BIO_printf (bio_err, "-camellia128, -camellia192, -camellia256\n");
595 BIO_printf (bio_err, " encrypt PEM output with cbc camellia\n");
597 BIO_printf (bio_err, "-nointern don't search certificates in message for signer\n");
598 BIO_printf (bio_err, "-nosigs don't verify message signature\n");
599 BIO_printf (bio_err, "-noverify don't verify signers certificate\n");
600 BIO_printf (bio_err, "-nocerts don't include signers certificate when signing\n");
601 BIO_printf (bio_err, "-nodetach use opaque signing\n");
602 BIO_printf (bio_err, "-noattr don't include any signed attributes\n");
603 BIO_printf (bio_err, "-binary don't translate message to text\n");
604 BIO_printf (bio_err, "-certfile file other certificates file\n");
605 BIO_printf (bio_err, "-signer file signer certificate file\n");
606 BIO_printf (bio_err, "-recip file recipient certificate file for decryption\n");
607 BIO_printf (bio_err, "-skeyid use subject key identifier\n");
608 BIO_printf (bio_err, "-in file input file\n");
609 BIO_printf (bio_err, "-inform arg input format SMIME (default), PEM or DER\n");
610 BIO_printf (bio_err, "-inkey file input private key (if not signer or recipient)\n");
611 BIO_printf (bio_err, "-keyform arg input private key format (PEM or ENGINE)\n");
612 BIO_printf (bio_err, "-out file output file\n");
613 BIO_printf (bio_err, "-outform arg output format SMIME (default), PEM or DER\n");
614 BIO_printf (bio_err, "-content file supply or override content for detached signature\n");
615 BIO_printf (bio_err, "-to addr to address\n");
616 BIO_printf (bio_err, "-from ad from address\n");
617 BIO_printf (bio_err, "-subject s subject\n");
618 BIO_printf (bio_err, "-text include or delete text MIME headers\n");
619 BIO_printf (bio_err, "-CApath dir trusted certificates directory\n");
620 BIO_printf (bio_err, "-CAfile file trusted certificates file\n");
621 BIO_printf (bio_err, "-crl_check check revocation status of signer's certificate using CRLs\n");
622 BIO_printf (bio_err, "-crl_check_all check revocation status of signer's certificate chain using CRLs\n");
623 #ifndef OPENSSL_NO_ENGINE
624 BIO_printf (bio_err, "-engine e use engine e, possibly a hardware device.\n");
626 BIO_printf (bio_err, "-passin arg input file pass phrase source\n");
627 BIO_printf(bio_err, "-rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
628 BIO_printf(bio_err, " load the file (or the files in the directory) into\n");
629 BIO_printf(bio_err, " the random number generator\n");
630 BIO_printf (bio_err, "cert.pem recipient certificate(s) for encryption\n");
634 #ifndef OPENSSL_NO_ENGINE
635 e = setup_engine(bio_err, engine, 0);
638 if (!app_passwd(bio_err, passargin, NULL, &passin, NULL))
640 BIO_printf(bio_err, "Error getting password\n");
646 app_RAND_load_file(NULL, bio_err, (inrand != NULL));
648 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
649 app_RAND_load_files(inrand));
654 if (!(operation & SMIME_SIGNERS))
655 flags &= ~CMS_DETACHED;
657 if (operation & SMIME_OP)
659 if (outformat == FORMAT_ASN1)
664 if (flags & CMS_BINARY)
668 if (operation & SMIME_IP)
670 if (informat == FORMAT_ASN1)
675 if (flags & CMS_BINARY)
679 if (operation == SMIME_ENCRYPT)
683 #ifndef OPENSSL_NO_DES
684 cipher = EVP_des_ede3_cbc();
686 BIO_printf(bio_err, "No cipher selected\n");
691 if (secret_key && !secret_keyid)
693 BIO_printf(bio_err, "No sectre key id\n");
698 encerts = sk_X509_new_null();
701 if (!(cert = load_cert(bio_err,*args,FORMAT_PEM,
702 NULL, e, "recipient certificate file")))
704 sk_X509_push(encerts, cert);
712 if (!(other = load_certs(bio_err,certfile,FORMAT_PEM, NULL,
713 e, "certificate file")))
715 ERR_print_errors(bio_err);
720 if (recipfile && (operation == SMIME_DECRYPT))
722 if (!(recip = load_cert(bio_err,recipfile,FORMAT_PEM,NULL,
723 e, "recipient certificate file")))
725 ERR_print_errors(bio_err);
730 if (operation == SMIME_SIGN_RECEIPT)
732 if (!(signer = load_cert(bio_err,signerfile,FORMAT_PEM,NULL,
733 e, "receipt signer certificate file")))
735 ERR_print_errors(bio_err);
740 if (operation == SMIME_DECRYPT)
745 else if ((operation == SMIME_SIGN) || (operation == SMIME_SIGN_RECEIPT))
748 keyfile = signerfile;
754 key = load_key(bio_err, keyfile, keyform, 0, passin, e,
762 if (!(in = BIO_new_file(infile, inmode)))
765 "Can't open input file %s\n", infile);
770 in = BIO_new_fp(stdin, BIO_NOCLOSE);
772 if (operation & SMIME_IP)
774 if (informat == FORMAT_SMIME)
775 cms = SMIME_read_CMS(in, &indata);
776 else if (informat == FORMAT_PEM)
777 cms = PEM_read_bio_CMS(in, NULL, NULL, NULL);
778 else if (informat == FORMAT_ASN1)
779 cms = d2i_CMS_bio(in, NULL);
782 BIO_printf(bio_err, "Bad input format for CMS file\n");
788 BIO_printf(bio_err, "Error reading S/MIME message\n");
794 if (!(indata = BIO_new_file(contfile, "rb")))
796 BIO_printf(bio_err, "Can't read content file %s\n", contfile);
804 char *rctmode = (rctformat == FORMAT_ASN1) ? "rb" : "r";
805 if (!(rctin = BIO_new_file(rctfile, rctmode)))
808 "Can't open receipt file %s\n", rctfile);
812 if (rctformat == FORMAT_SMIME)
813 rcms = SMIME_read_CMS(rctin, NULL);
814 else if (rctformat == FORMAT_PEM)
815 rcms = PEM_read_bio_CMS(rctin, NULL, NULL, NULL);
816 else if (rctformat == FORMAT_ASN1)
817 rcms = d2i_CMS_bio(rctin, NULL);
820 BIO_printf(bio_err, "Bad input format for receipt\n");
826 BIO_printf(bio_err, "Error reading receipt\n");
833 if (!(out = BIO_new_file(outfile, outmode)))
836 "Can't open output file %s\n", outfile);
842 out = BIO_new_fp(stdout, BIO_NOCLOSE);
843 #ifdef OPENSSL_SYS_VMS
845 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
846 out = BIO_push(tmpbio, out);
851 if ((operation == SMIME_VERIFY) || (operation == SMIME_VERIFY_RECEIPT))
853 if (!(store = setup_verify(bio_err, CAfile, CApath)))
855 X509_STORE_set_verify_cb_func(store, cms_cb);
857 X509_STORE_set1_param(store, vpm);
863 if (operation == SMIME_DATA_CREATE)
865 cms = CMS_data_create(in, flags);
867 else if (operation == SMIME_DIGEST_CREATE)
869 cms = CMS_digest_create(in, sign_md, flags);
871 else if (operation == SMIME_COMPRESS)
873 cms = CMS_compress(in, -1, flags);
875 else if (operation == SMIME_ENCRYPT)
877 flags |= CMS_PARTIAL;
878 cms = CMS_encrypt(encerts, in, cipher, flags);
883 if (!CMS_add0_recipient_key(cms, NID_undef,
884 secret_key, secret_keylen,
885 secret_keyid, secret_keyidlen,
888 /* NULL these because call absorbs them */
892 if (!(flags & CMS_STREAM))
894 if (!CMS_final(cms, in, flags))
898 else if (operation == SMIME_ENCRYPTED_ENCRYPT)
900 cms = CMS_EncryptedData_encrypt(in, cipher,
901 secret_key, secret_keylen,
905 else if (operation == SMIME_SIGN_RECEIPT)
907 CMS_ContentInfo *srcms = NULL;
908 STACK_OF(CMS_SignerInfo) *sis;
910 sis = CMS_get0_SignerInfos(cms);
913 si = sk_CMS_SignerInfo_value(sis, 0);
914 srcms = CMS_sign_receipt(si, signer, key, other, flags);
917 CMS_ContentInfo_free(cms);
920 else if (operation & SMIME_SIGNERS)
923 /* If detached data content we enable streaming if
924 * S/MIME output format.
926 if (operation == SMIME_SIGN)
929 if (flags & CMS_DETACHED)
931 if (outformat == FORMAT_SMIME)
934 flags |= CMS_PARTIAL;
935 cms = CMS_sign(NULL, NULL, other, in, flags);
939 CMS_set1_eContentType(cms, econtent_type);
943 rr = make_receipt_request(rr_to, rr_allorfirst,
948 "Signed Receipt Request Creation Error\n");
954 flags |= CMS_REUSE_DIGEST;
955 for (i = 0; i < sk_num(sksigners); i++)
958 signerfile = sk_value(sksigners, i);
959 keyfile = sk_value(skkeys, i);
960 signer = load_cert(bio_err, signerfile,FORMAT_PEM, NULL,
961 e, "signer certificate");
964 key = load_key(bio_err, keyfile, keyform, 0, passin, e,
968 si = CMS_add1_signer(cms, signer, key, sign_md, flags);
971 if (rr && !CMS_add1_ReceiptRequest(si, rr))
978 /* If not streaming or resigning finalize structure */
979 if ((operation == SMIME_SIGN) && !(flags & CMS_STREAM))
981 if (!CMS_final(cms, in, flags))
988 BIO_printf(bio_err, "Error creating CMS structure\n");
993 if (operation == SMIME_DECRYPT)
998 if (!CMS_decrypt_set1_key(cms,
999 secret_key, secret_keylen,
1000 secret_keyid, secret_keyidlen))
1003 "Error decrypting CMS using secret key\n");
1010 if (!CMS_decrypt_set1_pkey(cms, key, recip))
1013 "Error decrypting CMS using private key\n");
1018 if (!CMS_decrypt(cms, NULL, NULL, indata, out, flags))
1020 BIO_printf(bio_err, "Error decrypting CMS structure\n");
1024 else if (operation == SMIME_DATAOUT)
1026 if (!CMS_data(cms, out, flags))
1029 else if (operation == SMIME_UNCOMPRESS)
1031 if (!CMS_uncompress(cms, indata, out, flags))
1034 else if (operation == SMIME_DIGEST_VERIFY)
1036 if (CMS_digest_verify(cms, indata, out, flags) > 0)
1037 BIO_printf(bio_err, "Verification successful\n");
1040 BIO_printf(bio_err, "Verification failure\n");
1044 else if (operation == SMIME_ENCRYPTED_DECRYPT)
1046 if (!CMS_EncryptedData_decrypt(cms, secret_key, secret_keylen,
1047 indata, out, flags))
1050 else if (operation == SMIME_VERIFY)
1052 if (CMS_verify(cms, other, store, indata, out, flags) > 0)
1053 BIO_printf(bio_err, "Verification successful\n");
1056 BIO_printf(bio_err, "Verification failure\n");
1061 STACK_OF(X509) *signers;
1062 signers = CMS_get0_signers(cms);
1063 if (!save_certs(signerfile, signers))
1066 "Error writing signers to %s\n",
1071 sk_X509_free(signers);
1074 receipt_request_print(bio_err, cms);
1077 else if (operation == SMIME_VERIFY_RECEIPT)
1079 if (CMS_verify_receipt(rcms, cms, other, store, flags) > 0)
1080 BIO_printf(bio_err, "Verification successful\n");
1083 BIO_printf(bio_err, "Verification failure\n");
1092 CMS_ContentInfo_print_ctx(out, cms, 0, NULL);
1094 else if (outformat == FORMAT_SMIME)
1097 BIO_printf(out, "To: %s\n", to);
1099 BIO_printf(out, "From: %s\n", from);
1101 BIO_printf(out, "Subject: %s\n", subject);
1102 if (operation == SMIME_RESIGN)
1103 ret = SMIME_write_CMS(out, cms, indata, flags);
1105 ret = SMIME_write_CMS(out, cms, in, flags);
1107 else if (outformat == FORMAT_PEM)
1108 ret = PEM_write_bio_CMS_stream(out, cms, in, flags);
1109 else if (outformat == FORMAT_ASN1)
1110 ret = i2d_CMS_bio_stream(out,cms, in, flags);
1113 BIO_printf(bio_err, "Bad output format for CMS file\n");
1125 ERR_print_errors(bio_err);
1127 app_RAND_write_file(NULL, bio_err);
1128 sk_X509_pop_free(encerts, X509_free);
1129 sk_X509_pop_free(other, X509_free);
1131 X509_VERIFY_PARAM_free(vpm);
1137 OPENSSL_free(secret_key);
1139 OPENSSL_free(secret_keyid);
1141 ASN1_OBJECT_free(econtent_type);
1143 CMS_ReceiptRequest_free(rr);
1148 X509_STORE_free(store);
1153 CMS_ContentInfo_free(cms);
1154 CMS_ContentInfo_free(rcms);
1159 if (passin) OPENSSL_free(passin);
1163 static int save_certs(char *signerfile, STACK_OF(X509) *signers)
1169 tmp = BIO_new_file(signerfile, "w");
1171 for(i = 0; i < sk_X509_num(signers); i++)
1172 PEM_write_bio_X509(tmp, sk_X509_value(signers, i));
1178 /* Minimal callback just to output policy info (if any) */
1180 static int cms_cb(int ok, X509_STORE_CTX *ctx)
1184 error = X509_STORE_CTX_get_error(ctx);
1186 if ((error != X509_V_ERR_NO_EXPLICIT_POLICY)
1187 && ((error != X509_V_OK) || (ok != 2)))
1190 policies_print(NULL, ctx);
1196 static void gnames_stack_print(BIO *out, STACK_OF(GENERAL_NAMES) *gns)
1198 STACK_OF(GENERAL_NAME) *gens;
1201 for (i = 0; i < sk_GENERAL_NAMES_num(gns); i++)
1203 gens = sk_GENERAL_NAMES_value(gns, i);
1204 for (j = 0; j < sk_GENERAL_NAME_num(gens); j++)
1206 gen = sk_GENERAL_NAME_value(gens, j);
1208 GENERAL_NAME_print(out, gen);
1209 BIO_puts(out, "\n");
1215 static void receipt_request_print(BIO *out, CMS_ContentInfo *cms)
1217 STACK_OF(CMS_SignerInfo) *sis;
1219 CMS_ReceiptRequest *rr;
1221 STACK_OF(GENERAL_NAMES) *rto, *rlist;
1224 sis = CMS_get0_SignerInfos(cms);
1225 for (i = 0; i < sk_CMS_SignerInfo_num(sis); i++)
1227 si = sk_CMS_SignerInfo_value(sis, i);
1228 rv = CMS_get1_ReceiptRequest(si, &rr);
1229 BIO_printf(bio_err, "Signer %d:\n", i + 1);
1231 BIO_puts(bio_err, " No Receipt Request\n");
1234 BIO_puts(bio_err, " Receipt Request Parse Error\n");
1235 ERR_print_errors(bio_err);
1241 CMS_ReceiptRequest_get0_values(rr, &scid, &allorfirst,
1243 BIO_puts(out, " Signed Content ID:\n");
1244 idlen = ASN1_STRING_length(scid);
1245 id = (char *)ASN1_STRING_data(scid);
1246 BIO_dump_indent(out, id, idlen, 4);
1247 BIO_puts(out, " Receipts From");
1250 BIO_puts(out, " List:\n");
1251 gnames_stack_print(out, rlist);
1253 else if (allorfirst == 1)
1254 BIO_puts(out, ": First Tier\n");
1255 else if (allorfirst == 0)
1256 BIO_puts(out, ": All\n");
1258 BIO_printf(out, " Unknown (%d)\n", allorfirst);
1259 BIO_puts(out, " Receipts To:\n");
1260 gnames_stack_print(out, rto);
1263 CMS_ReceiptRequest_free(rr);
1267 static STACK_OF(GENERAL_NAMES) *make_names_stack(STACK *ns)
1270 STACK_OF(GENERAL_NAMES) *ret;
1271 GENERAL_NAMES *gens = NULL;
1272 GENERAL_NAME *gen = NULL;
1273 ret = sk_GENERAL_NAMES_new_null();
1276 for (i = 0; i < sk_num(ns); i++)
1278 char *str = sk_value(ns, i);
1279 gen = a2i_GENERAL_NAME(NULL, NULL, NULL, GEN_EMAIL, str, 0);
1282 gens = GENERAL_NAMES_new();
1285 if (!sk_GENERAL_NAME_push(gens, gen))
1288 if (!sk_GENERAL_NAMES_push(ret, gens))
1297 sk_GENERAL_NAMES_pop_free(ret, GENERAL_NAMES_free);
1299 GENERAL_NAMES_free(gens);
1301 GENERAL_NAME_free(gen);
1306 static CMS_ReceiptRequest *make_receipt_request(STACK *rr_to, int rr_allorfirst,
1309 STACK_OF(GENERAL_NAMES) *rct_to, *rct_from;
1310 CMS_ReceiptRequest *rr;
1311 rct_to = make_names_stack(rr_to);
1316 rct_from = make_names_stack(rr_from);
1322 rr = CMS_ReceiptRequest_create0(NULL, -1, rr_allorfirst, rct_from,