Add AES support in the applications that support -des and -des3.
[openssl.git] / apps / pkcs12.c
1 /* pkcs12.c */
2 #if !defined(OPENSSL_NO_DES) && !defined(OPENSSL_NO_SHA1)
3
4 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
5  * project 1999.
6  */
7 /* ====================================================================
8  * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  *
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer. 
16  *
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in
19  *    the documentation and/or other materials provided with the
20  *    distribution.
21  *
22  * 3. All advertising materials mentioning features or use of this
23  *    software must display the following acknowledgment:
24  *    "This product includes software developed by the OpenSSL Project
25  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
26  *
27  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
28  *    endorse or promote products derived from this software without
29  *    prior written permission. For written permission, please contact
30  *    licensing@OpenSSL.org.
31  *
32  * 5. Products derived from this software may not be called "OpenSSL"
33  *    nor may "OpenSSL" appear in their names without prior written
34  *    permission of the OpenSSL Project.
35  *
36  * 6. Redistributions of any form whatsoever must retain the following
37  *    acknowledgment:
38  *    "This product includes software developed by the OpenSSL Project
39  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
40  *
41  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
42  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
44  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
45  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
46  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
47  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
48  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
50  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
51  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
52  * OF THE POSSIBILITY OF SUCH DAMAGE.
53  * ====================================================================
54  *
55  * This product includes cryptographic software written by Eric Young
56  * (eay@cryptsoft.com).  This product includes software written by Tim
57  * Hudson (tjh@cryptsoft.com).
58  *
59  */
60
61 #include <stdio.h>
62 #include <stdlib.h>
63 #include <string.h>
64 #include "apps.h"
65 #include <openssl/crypto.h>
66 #include <openssl/err.h>
67 #include <openssl/pem.h>
68 #include <openssl/pkcs12.h>
69
70 #define PROG pkcs12_main
71
72 const EVP_CIPHER *enc;
73
74
75 #define NOKEYS          0x1
76 #define NOCERTS         0x2
77 #define INFO            0x4
78 #define CLCERTS         0x8
79 #define CACERTS         0x10
80
81 int get_cert_chain (X509 *cert, X509_STORE *store, STACK_OF(X509) **chain);
82 int dump_certs_keys_p12(BIO *out, PKCS12 *p12, char *pass, int passlen, int options, char *pempass);
83 int dump_certs_pkeys_bags(BIO *out, STACK_OF(PKCS12_SAFEBAG) *bags, char *pass,
84                           int passlen, int options, char *pempass);
85 int dump_certs_pkeys_bag(BIO *out, PKCS12_SAFEBAG *bags, char *pass, int passlen, int options, char *pempass);
86 int print_attribs(BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst, char *name);
87 void hex_prin(BIO *out, unsigned char *buf, int len);
88 int alg_print(BIO *x, X509_ALGOR *alg);
89 int cert_load(BIO *in, STACK_OF(X509) *sk);
90
91 int MAIN(int, char **);
92
93 int MAIN(int argc, char **argv)
94 {
95     ENGINE *e = NULL;
96     char *infile=NULL, *outfile=NULL, *keyname = NULL;  
97     char *certfile=NULL;
98     BIO *in=NULL, *out = NULL;
99     char **args;
100     char *name = NULL;
101     char *csp_name = NULL;
102     PKCS12 *p12 = NULL;
103     char pass[50], macpass[50];
104     int export_cert = 0;
105     int options = 0;
106     int chain = 0;
107     int badarg = 0;
108     int iter = PKCS12_DEFAULT_ITER;
109     int maciter = PKCS12_DEFAULT_ITER;
110     int twopass = 0;
111     int keytype = 0;
112     int cert_pbe = NID_pbe_WithSHA1And40BitRC2_CBC;
113     int key_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
114     int ret = 1;
115     int macver = 1;
116     int noprompt = 0;
117     STACK *canames = NULL;
118     char *cpass = NULL, *mpass = NULL;
119     char *passargin = NULL, *passargout = NULL, *passarg = NULL;
120     char *passin = NULL, *passout = NULL;
121     char *inrand = NULL;
122     char *CApath = NULL, *CAfile = NULL;
123     char *engine=NULL;
124
125     apps_startup();
126
127     enc = EVP_des_ede3_cbc();
128     if (bio_err == NULL ) bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
129
130     args = argv + 1;
131
132
133     while (*args) {
134         if (*args[0] == '-') {
135                 if (!strcmp (*args, "-nokeys")) options |= NOKEYS;
136                 else if (!strcmp (*args, "-keyex")) keytype = KEY_EX;
137                 else if (!strcmp (*args, "-keysig")) keytype = KEY_SIG;
138                 else if (!strcmp (*args, "-nocerts")) options |= NOCERTS;
139                 else if (!strcmp (*args, "-clcerts")) options |= CLCERTS;
140                 else if (!strcmp (*args, "-cacerts")) options |= CACERTS;
141                 else if (!strcmp (*args, "-noout")) options |= (NOKEYS|NOCERTS);
142                 else if (!strcmp (*args, "-info")) options |= INFO;
143                 else if (!strcmp (*args, "-chain")) chain = 1;
144                 else if (!strcmp (*args, "-twopass")) twopass = 1;
145                 else if (!strcmp (*args, "-nomacver")) macver = 0;
146                 else if (!strcmp (*args, "-descert"))
147                         cert_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
148                 else if (!strcmp (*args, "-export")) export_cert = 1;
149                 else if (!strcmp (*args, "-des")) enc=EVP_des_cbc();
150 #ifndef OPENSSL_NO_IDEA
151                 else if (!strcmp (*args, "-idea")) enc=EVP_idea_cbc();
152 #endif
153                 else if (!strcmp (*args, "-des3")) enc = EVP_des_ede3_cbc();
154 #ifndef OPENSSL_NO_AES
155                 else if (!strcmp(*argv,"-aes128")) enc=EVP_aes_128_cbc();
156                 else if (!strcmp(*argv,"-aes192")) enc=EVP_aes_192_cbc();
157                 else if (!strcmp(*argv,"-aes256")) enc=EVP_aes_256_cbc();
158 #endif
159                 else if (!strcmp (*args, "-noiter")) iter = 1;
160                 else if (!strcmp (*args, "-maciter"))
161                                          maciter = PKCS12_DEFAULT_ITER;
162                 else if (!strcmp (*args, "-nomaciter"))
163                                          maciter = 1;
164                 else if (!strcmp (*args, "-nodes")) enc=NULL;
165                 else if (!strcmp (*args, "-certpbe")) {
166                         if (args[1]) {
167                                 args++;
168                                 cert_pbe=OBJ_txt2nid(*args);
169                                 if(cert_pbe == NID_undef) {
170                                         BIO_printf(bio_err,
171                                                  "Unknown PBE algorithm %s\n", *args);
172                                         badarg = 1;
173                                 }
174                         } else badarg = 1;
175                 } else if (!strcmp (*args, "-keypbe")) {
176                         if (args[1]) {
177                                 args++;
178                                 key_pbe=OBJ_txt2nid(*args);
179                                 if(key_pbe == NID_undef) {
180                                         BIO_printf(bio_err,
181                                                  "Unknown PBE algorithm %s\n", *args);
182                                         badarg = 1;
183                                 }
184                         } else badarg = 1;
185                 } else if (!strcmp (*args, "-rand")) {
186                     if (args[1]) {
187                         args++; 
188                         inrand = *args;
189                     } else badarg = 1;
190                 } else if (!strcmp (*args, "-inkey")) {
191                     if (args[1]) {
192                         args++; 
193                         keyname = *args;
194                     } else badarg = 1;
195                 } else if (!strcmp (*args, "-certfile")) {
196                     if (args[1]) {
197                         args++; 
198                         certfile = *args;
199                     } else badarg = 1;
200                 } else if (!strcmp (*args, "-name")) {
201                     if (args[1]) {
202                         args++; 
203                         name = *args;
204                     } else badarg = 1;
205                 } else if (!strcmp (*args, "-CSP")) {
206                     if (args[1]) {
207                         args++; 
208                         csp_name = *args;
209                     } else badarg = 1;
210                 } else if (!strcmp (*args, "-caname")) {
211                     if (args[1]) {
212                         args++; 
213                         if (!canames) canames = sk_new_null();
214                         sk_push(canames, *args);
215                     } else badarg = 1;
216                 } else if (!strcmp (*args, "-in")) {
217                     if (args[1]) {
218                         args++; 
219                         infile = *args;
220                     } else badarg = 1;
221                 } else if (!strcmp (*args, "-out")) {
222                     if (args[1]) {
223                         args++; 
224                         outfile = *args;
225                     } else badarg = 1;
226                 } else if (!strcmp(*args,"-passin")) {
227                     if (args[1]) {
228                         args++; 
229                         passargin = *args;
230                     } else badarg = 1;
231                 } else if (!strcmp(*args,"-passout")) {
232                     if (args[1]) {
233                         args++; 
234                         passargout = *args;
235                     } else badarg = 1;
236                 } else if (!strcmp (*args, "-password")) {
237                     if (args[1]) {
238                         args++; 
239                         passarg = *args;
240                         noprompt = 1;
241                     } else badarg = 1;
242                 } else if (!strcmp(*args,"-CApath")) {
243                     if (args[1]) {
244                         args++; 
245                         CApath = *args;
246                     } else badarg = 1;
247                 } else if (!strcmp(*args,"-CAfile")) {
248                     if (args[1]) {
249                         args++; 
250                         CAfile = *args;
251                     } else badarg = 1;
252                 } else if (!strcmp(*args,"-engine")) {
253                     if (args[1]) {
254                         args++; 
255                         engine = *args;
256                     } else badarg = 1;
257                 } else badarg = 1;
258
259         } else badarg = 1;
260         args++;
261     }
262
263     if (badarg) {
264         BIO_printf (bio_err, "Usage: pkcs12 [options]\n");
265         BIO_printf (bio_err, "where options are\n");
266         BIO_printf (bio_err, "-export       output PKCS12 file\n");
267         BIO_printf (bio_err, "-chain        add certificate chain\n");
268         BIO_printf (bio_err, "-inkey file   private key if not infile\n");
269         BIO_printf (bio_err, "-certfile f   add all certs in f\n");
270         BIO_printf (bio_err, "-CApath arg   - PEM format directory of CA's\n");
271         BIO_printf (bio_err, "-CAfile arg   - PEM format file of CA's\n");
272         BIO_printf (bio_err, "-name \"name\"  use name as friendly name\n");
273         BIO_printf (bio_err, "-caname \"nm\"  use nm as CA friendly name (can be used more than once).\n");
274         BIO_printf (bio_err, "-in  infile   input filename\n");
275         BIO_printf (bio_err, "-out outfile  output filename\n");
276         BIO_printf (bio_err, "-noout        don't output anything, just verify.\n");
277         BIO_printf (bio_err, "-nomacver     don't verify MAC.\n");
278         BIO_printf (bio_err, "-nocerts      don't output certificates.\n");
279         BIO_printf (bio_err, "-clcerts      only output client certificates.\n");
280         BIO_printf (bio_err, "-cacerts      only output CA certificates.\n");
281         BIO_printf (bio_err, "-nokeys       don't output private keys.\n");
282         BIO_printf (bio_err, "-info         give info about PKCS#12 structure.\n");
283         BIO_printf (bio_err, "-des          encrypt private keys with DES\n");
284         BIO_printf (bio_err, "-des3         encrypt private keys with triple DES (default)\n");
285 #ifndef OPENSSL_NO_IDEA
286         BIO_printf (bio_err, "-idea         encrypt private keys with idea\n");
287 #endif
288 #ifndef OPENSSL_NO_AES
289         BIO_printf (bio_err, "-aes128, -aes192, -aes256\n");
290         BIO_printf (bio_err, "              encrypt PEM output with cbc aes\n");
291 #endif
292         BIO_printf (bio_err, "-nodes        don't encrypt private keys\n");
293         BIO_printf (bio_err, "-noiter       don't use encryption iteration\n");
294         BIO_printf (bio_err, "-maciter      use MAC iteration\n");
295         BIO_printf (bio_err, "-twopass      separate MAC, encryption passwords\n");
296         BIO_printf (bio_err, "-descert      encrypt PKCS#12 certificates with triple DES (default RC2-40)\n");
297         BIO_printf (bio_err, "-certpbe alg  specify certificate PBE algorithm (default RC2-40)\n");
298         BIO_printf (bio_err, "-keypbe alg   specify private key PBE algorithm (default 3DES)\n");
299         BIO_printf (bio_err, "-keyex        set MS key exchange type\n");
300         BIO_printf (bio_err, "-keysig       set MS key signature type\n");
301         BIO_printf (bio_err, "-password p   set import/export password source\n");
302         BIO_printf (bio_err, "-passin p     input file pass phrase source\n");
303         BIO_printf (bio_err, "-passout p    output file pass phrase source\n");
304         BIO_printf (bio_err, "-engine e     use engine e, possibly a hardware device.\n");
305         BIO_printf(bio_err,  "-rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
306         BIO_printf(bio_err,  "              load the file (or the files in the directory) into\n");
307         BIO_printf(bio_err,  "              the random number generator\n");
308         goto end;
309     }
310
311     e = setup_engine(bio_err, engine, 0);
312
313     if(passarg) {
314         if(export_cert) passargout = passarg;
315         else passargin = passarg;
316     }
317
318     if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) {
319         BIO_printf(bio_err, "Error getting passwords\n");
320         goto end;
321     }
322
323     if(!cpass) {
324         if(export_cert) cpass = passout;
325         else cpass = passin;
326     }
327
328     if(cpass) {
329         mpass = cpass;
330         noprompt = 1;
331     } else {
332         cpass = pass;
333         mpass = macpass;
334     }
335
336     if(export_cert || inrand) {
337         app_RAND_load_file(NULL, bio_err, (inrand != NULL));
338         if (inrand != NULL)
339                 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
340                         app_RAND_load_files(inrand));
341     }
342     ERR_load_crypto_strings();
343
344 #ifdef CRYPTO_MDEBUG
345     CRYPTO_push_info("read files");
346 #endif
347
348     if (!infile) in = BIO_new_fp(stdin, BIO_NOCLOSE);
349     else in = BIO_new_file(infile, "rb");
350     if (!in) {
351             BIO_printf(bio_err, "Error opening input file %s\n",
352                                                 infile ? infile : "<stdin>");
353             perror (infile);
354             goto end;
355    }
356
357 #if 0
358    if (certfile) {
359         if(!(certsin = BIO_new_file(certfile, "r"))) {
360             BIO_printf(bio_err, "Can't open certificate file %s\n", certfile);
361             perror (certfile);
362             goto end;
363         }
364     }
365
366     if (keyname) {
367         if(!(inkey = BIO_new_file(keyname, "r"))) {
368             BIO_printf(bio_err, "Can't key certificate file %s\n", keyname);
369             perror (keyname);
370             goto end;
371         }
372      }
373 #endif
374
375 #ifdef CRYPTO_MDEBUG
376     CRYPTO_pop_info();
377     CRYPTO_push_info("write files");
378 #endif
379
380     if (!outfile) {
381         out = BIO_new_fp(stdout, BIO_NOCLOSE);
382 #ifdef OPENSSL_SYS_VMS
383         {
384             BIO *tmpbio = BIO_new(BIO_f_linebuffer());
385             out = BIO_push(tmpbio, out);
386         }
387 #endif
388     } else out = BIO_new_file(outfile, "wb");
389     if (!out) {
390         BIO_printf(bio_err, "Error opening output file %s\n",
391                                                 outfile ? outfile : "<stdout>");
392         perror (outfile);
393         goto end;
394     }
395     if (twopass) {
396 #ifdef CRYPTO_MDEBUG
397     CRYPTO_push_info("read MAC password");
398 #endif
399         if(EVP_read_pw_string (macpass, 50, "Enter MAC Password:", export_cert))
400         {
401             BIO_printf (bio_err, "Can't read Password\n");
402             goto end;
403         }
404 #ifdef CRYPTO_MDEBUG
405     CRYPTO_pop_info();
406 #endif
407     }
408
409     if (export_cert) {
410         EVP_PKEY *key = NULL;
411         STACK_OF(PKCS12_SAFEBAG) *bags = NULL;
412         STACK_OF(PKCS7) *safes = NULL;
413         PKCS12_SAFEBAG *bag = NULL;
414         PKCS8_PRIV_KEY_INFO *p8 = NULL;
415         PKCS7 *authsafe = NULL;
416         X509 *ucert = NULL;
417         STACK_OF(X509) *certs=NULL;
418         char *catmp = NULL;
419         int i;
420         unsigned char keyid[EVP_MAX_MD_SIZE];
421         unsigned int keyidlen = 0;
422
423 #ifdef CRYPTO_MDEBUG
424         CRYPTO_push_info("process -export_cert");
425         CRYPTO_push_info("reading private key");
426 #endif
427         key = load_key(bio_err, keyname ? keyname : infile, FORMAT_PEM,
428                 passin, e, "private key");
429         if (!key) {
430                 goto export_end;
431         }
432
433 #ifdef CRYPTO_MDEBUG
434         CRYPTO_pop_info();
435         CRYPTO_push_info("reading certs from input");
436 #endif
437
438         /* Load in all certs in input file */
439         if(!(certs = load_certs(bio_err, infile, FORMAT_PEM, NULL, e,
440                 "certificates"))) {
441                 goto export_end;
442         }
443
444 #ifdef CRYPTO_MDEBUG
445         CRYPTO_pop_info();
446         CRYPTO_push_info("reading certs from input 2");
447 #endif
448
449         for(i = 0; i < sk_X509_num(certs); i++) {
450                 ucert = sk_X509_value(certs, i);
451                 if(X509_check_private_key(ucert, key)) {
452                         X509_digest(ucert, EVP_sha1(), keyid, &keyidlen);
453                         break;
454                 }
455         }
456         if(!keyidlen) {
457                 ucert = NULL;
458                 BIO_printf(bio_err, "No certificate matches private key\n");
459                 goto export_end;
460         }
461         
462 #ifdef CRYPTO_MDEBUG
463         CRYPTO_pop_info();
464         CRYPTO_push_info("reading certs from certfile");
465 #endif
466
467         bags = sk_PKCS12_SAFEBAG_new_null ();
468
469         /* Add any more certificates asked for */
470         if (certfile) {
471                 STACK_OF(X509) *morecerts=NULL;
472                 if(!(morecerts = load_certs(bio_err, certfile, FORMAT_PEM,
473                                             NULL, e,
474                                             "certificates from certfile"))) {
475                         goto export_end;
476                 }
477                 while(sk_X509_num(morecerts) > 0) {
478                         sk_X509_push(certs, sk_X509_shift(morecerts));
479                 }
480                 sk_X509_free(morecerts);
481         }
482
483 #ifdef CRYPTO_MDEBUG
484         CRYPTO_pop_info();
485         CRYPTO_push_info("building chain");
486 #endif
487
488         /* If chaining get chain from user cert */
489         if (chain) {
490                 int vret;
491                 STACK_OF(X509) *chain2;
492                 X509_STORE *store = X509_STORE_new();
493                 if (!store)
494                         {
495                         BIO_printf (bio_err, "Memory allocation error\n");
496                         goto export_end;
497                         }
498                 if (!X509_STORE_load_locations(store, CAfile, CApath))
499                         X509_STORE_set_default_paths (store);
500
501                 vret = get_cert_chain (ucert, store, &chain2);
502                 X509_STORE_free(store);
503
504                 if (!vret) {
505                     /* Exclude verified certificate */
506                     for (i = 1; i < sk_X509_num (chain2) ; i++) 
507                         sk_X509_push(certs, sk_X509_value (chain2, i));
508                 }
509                 sk_X509_free(chain2);
510                 if (vret) {
511                         BIO_printf (bio_err, "Error %s getting chain.\n",
512                                         X509_verify_cert_error_string(vret));
513                         goto export_end;
514                 }                       
515         }
516
517 #ifdef CRYPTO_MDEBUG
518         CRYPTO_pop_info();
519         CRYPTO_push_info("building bags");
520 #endif
521
522         /* We now have loads of certificates: include them all */
523         for(i = 0; i < sk_X509_num(certs); i++) {
524                 X509 *cert = NULL;
525                 cert = sk_X509_value(certs, i);
526                 bag = PKCS12_x5092certbag(cert);
527                 /* If it matches private key set id */
528                 if(cert == ucert) {
529                         if(name) PKCS12_add_friendlyname(bag, name, -1);
530                         PKCS12_add_localkeyid(bag, keyid, keyidlen);
531                 } else if((catmp = sk_shift(canames))) 
532                                 PKCS12_add_friendlyname(bag, catmp, -1);
533                 sk_PKCS12_SAFEBAG_push(bags, bag);
534         }
535         sk_X509_pop_free(certs, X509_free);
536         certs = NULL;
537         /* ucert is part of certs so it is already freed */
538         ucert = NULL;
539
540 #ifdef CRYPTO_MDEBUG
541         CRYPTO_pop_info();
542         CRYPTO_push_info("encrypting bags");
543 #endif
544
545         if(!noprompt &&
546                 EVP_read_pw_string(pass, 50, "Enter Export Password:", 1)) {
547             BIO_printf (bio_err, "Can't read Password\n");
548             goto export_end;
549         }
550         if (!twopass) strcpy(macpass, pass);
551         /* Turn certbags into encrypted authsafe */
552         authsafe = PKCS12_pack_p7encdata(cert_pbe, cpass, -1, NULL, 0,
553                                                                  iter, bags);
554         sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
555         bags = NULL;
556
557         if (!authsafe) {
558                 ERR_print_errors (bio_err);
559                 goto export_end;
560         }
561
562         safes = sk_PKCS7_new_null ();
563         sk_PKCS7_push (safes, authsafe);
564
565 #ifdef CRYPTO_MDEBUG
566         CRYPTO_pop_info();
567         CRYPTO_push_info("building shrouded key bag");
568 #endif
569
570         /* Make a shrouded key bag */
571         p8 = EVP_PKEY2PKCS8 (key);
572         if(keytype) PKCS8_add_keyusage(p8, keytype);
573         bag = PKCS12_MAKE_SHKEYBAG(key_pbe, cpass, -1, NULL, 0, iter, p8);
574         PKCS8_PRIV_KEY_INFO_free(p8);
575         p8 = NULL;
576         if (name) PKCS12_add_friendlyname (bag, name, -1);
577         if(csp_name) PKCS12_add_CSPName_asc(bag, csp_name, -1);
578         PKCS12_add_localkeyid (bag, keyid, keyidlen);
579         bags = sk_PKCS12_SAFEBAG_new_null();
580         sk_PKCS12_SAFEBAG_push (bags, bag);
581
582 #ifdef CRYPTO_MDEBUG
583         CRYPTO_pop_info();
584         CRYPTO_push_info("encrypting shrouded key bag");
585 #endif
586
587         /* Turn it into unencrypted safe bag */
588         authsafe = PKCS12_pack_p7data (bags);
589         sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
590         bags = NULL;
591         sk_PKCS7_push (safes, authsafe);
592
593 #ifdef CRYPTO_MDEBUG
594         CRYPTO_pop_info();
595         CRYPTO_push_info("building pkcs12");
596 #endif
597
598         p12 = PKCS12_init(NID_pkcs7_data);
599
600         PKCS12_pack_authsafes(p12, safes);
601
602         sk_PKCS7_pop_free(safes, PKCS7_free);
603         safes = NULL;
604
605         PKCS12_set_mac (p12, mpass, -1, NULL, 0, maciter, NULL);
606
607 #ifdef CRYPTO_MDEBUG
608         CRYPTO_pop_info();
609         CRYPTO_push_info("writing pkcs12");
610 #endif
611
612         i2d_PKCS12_bio (out, p12);
613
614         ret = 0;
615
616     export_end:
617 #ifdef CRYPTO_MDEBUG
618         CRYPTO_pop_info();
619         CRYPTO_pop_info();
620         CRYPTO_push_info("process -export_cert: freeing");
621 #endif
622
623         if (key) EVP_PKEY_free(key);
624         if (certs) sk_X509_pop_free(certs, X509_free);
625         if (safes) sk_PKCS7_pop_free(safes, PKCS7_free);
626         if (bags) sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
627         if (ucert) X509_free(ucert);
628
629 #ifdef CRYPTO_MDEBUG
630         CRYPTO_pop_info();
631 #endif
632         goto end;
633         
634     }
635
636     if (!(p12 = d2i_PKCS12_bio (in, NULL))) {
637         ERR_print_errors(bio_err);
638         goto end;
639     }
640
641 #ifdef CRYPTO_MDEBUG
642     CRYPTO_push_info("read import password");
643 #endif
644     if(!noprompt && EVP_read_pw_string(pass, 50, "Enter Import Password:", 0)) {
645         BIO_printf (bio_err, "Can't read Password\n");
646         goto end;
647     }
648 #ifdef CRYPTO_MDEBUG
649     CRYPTO_pop_info();
650 #endif
651
652     if (!twopass) strcpy(macpass, pass);
653
654     if (options & INFO) BIO_printf (bio_err, "MAC Iteration %ld\n", p12->mac->iter ? ASN1_INTEGER_get (p12->mac->iter) : 1);
655     if(macver) {
656 #ifdef CRYPTO_MDEBUG
657     CRYPTO_push_info("verify MAC");
658 #endif
659         /* If we enter empty password try no password first */
660         if(!macpass[0] && PKCS12_verify_mac(p12, NULL, 0)) {
661                 /* If mac and crypto pass the same set it to NULL too */
662                 if(!twopass) cpass = NULL;
663         } else if (!PKCS12_verify_mac(p12, mpass, -1)) {
664             BIO_printf (bio_err, "Mac verify error: invalid password?\n");
665             ERR_print_errors (bio_err);
666             goto end;
667         }
668         BIO_printf (bio_err, "MAC verified OK\n");
669 #ifdef CRYPTO_MDEBUG
670     CRYPTO_pop_info();
671 #endif
672     }
673
674 #ifdef CRYPTO_MDEBUG
675     CRYPTO_push_info("output keys and certificates");
676 #endif
677     if (!dump_certs_keys_p12 (out, p12, cpass, -1, options, passout)) {
678         BIO_printf(bio_err, "Error outputting keys and certificates\n");
679         ERR_print_errors (bio_err);
680         goto end;
681     }
682 #ifdef CRYPTO_MDEBUG
683     CRYPTO_pop_info();
684 #endif
685     ret = 0;
686  end:
687     if (p12) PKCS12_free(p12);
688     if(export_cert || inrand) app_RAND_write_file(NULL, bio_err);
689 #ifdef CRYPTO_MDEBUG
690     CRYPTO_remove_all_info();
691 #endif
692     BIO_free(in);
693     BIO_free_all(out);
694     if (canames) sk_free(canames);
695     if(passin) OPENSSL_free(passin);
696     if(passout) OPENSSL_free(passout);
697     apps_shutdown();
698     EXIT(ret);
699 }
700
701 int dump_certs_keys_p12 (BIO *out, PKCS12 *p12, char *pass,
702              int passlen, int options, char *pempass)
703 {
704         STACK_OF(PKCS7) *asafes;
705         STACK_OF(PKCS12_SAFEBAG) *bags;
706         int i, bagnid;
707         PKCS7 *p7;
708
709         if (!( asafes = PKCS12_unpack_authsafes(p12))) return 0;
710         for (i = 0; i < sk_PKCS7_num (asafes); i++) {
711                 p7 = sk_PKCS7_value (asafes, i);
712                 bagnid = OBJ_obj2nid (p7->type);
713                 if (bagnid == NID_pkcs7_data) {
714                         bags = PKCS12_unpack_p7data(p7);
715                         if (options & INFO) BIO_printf (bio_err, "PKCS7 Data\n");
716                 } else if (bagnid == NID_pkcs7_encrypted) {
717                         if (options & INFO) {
718                                 BIO_printf(bio_err, "PKCS7 Encrypted data: ");
719                                 alg_print(bio_err, 
720                                         p7->d.encrypted->enc_data->algorithm);
721                         }
722                         bags = PKCS12_unpack_p7encdata(p7, pass, passlen);
723                 } else continue;
724                 if (!bags) return 0;
725                 if (!dump_certs_pkeys_bags (out, bags, pass, passlen, 
726                                                  options, pempass)) {
727                         sk_PKCS12_SAFEBAG_pop_free (bags, PKCS12_SAFEBAG_free);
728                         return 0;
729                 }
730                 sk_PKCS12_SAFEBAG_pop_free (bags, PKCS12_SAFEBAG_free);
731         }
732         sk_PKCS7_pop_free (asafes, PKCS7_free);
733         return 1;
734 }
735
736 int dump_certs_pkeys_bags (BIO *out, STACK_OF(PKCS12_SAFEBAG) *bags,
737                            char *pass, int passlen, int options, char *pempass)
738 {
739         int i;
740         for (i = 0; i < sk_PKCS12_SAFEBAG_num (bags); i++) {
741                 if (!dump_certs_pkeys_bag (out,
742                                            sk_PKCS12_SAFEBAG_value (bags, i),
743                                            pass, passlen,
744                                            options, pempass))
745                     return 0;
746         }
747         return 1;
748 }
749
750 int dump_certs_pkeys_bag (BIO *out, PKCS12_SAFEBAG *bag, char *pass,
751              int passlen, int options, char *pempass)
752 {
753         EVP_PKEY *pkey;
754         PKCS8_PRIV_KEY_INFO *p8;
755         X509 *x509;
756         
757         switch (M_PKCS12_bag_type(bag))
758         {
759         case NID_keyBag:
760                 if (options & INFO) BIO_printf (bio_err, "Key bag\n");
761                 if (options & NOKEYS) return 1;
762                 print_attribs (out, bag->attrib, "Bag Attributes");
763                 p8 = bag->value.keybag;
764                 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
765                 print_attribs (out, p8->attributes, "Key Attributes");
766                 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, pempass);
767                 EVP_PKEY_free(pkey);
768         break;
769
770         case NID_pkcs8ShroudedKeyBag:
771                 if (options & INFO) {
772                         BIO_printf (bio_err, "Shrouded Keybag: ");
773                         alg_print (bio_err, bag->value.shkeybag->algor);
774                 }
775                 if (options & NOKEYS) return 1;
776                 print_attribs (out, bag->attrib, "Bag Attributes");
777                 if (!(p8 = PKCS12_decrypt_skey(bag, pass, passlen)))
778                                 return 0;
779                 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
780                 print_attribs (out, p8->attributes, "Key Attributes");
781                 PKCS8_PRIV_KEY_INFO_free(p8);
782                 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, pempass);
783                 EVP_PKEY_free(pkey);
784         break;
785
786         case NID_certBag:
787                 if (options & INFO) BIO_printf (bio_err, "Certificate bag\n");
788                 if (options & NOCERTS) return 1;
789                 if (PKCS12_get_attr(bag, NID_localKeyID)) {
790                         if (options & CACERTS) return 1;
791                 } else if (options & CLCERTS) return 1;
792                 print_attribs (out, bag->attrib, "Bag Attributes");
793                 if (M_PKCS12_cert_bag_type(bag) != NID_x509Certificate )
794                                                                  return 1;
795                 if (!(x509 = PKCS12_certbag2x509(bag))) return 0;
796                 dump_cert_text (out, x509);
797                 PEM_write_bio_X509 (out, x509);
798                 X509_free(x509);
799         break;
800
801         case NID_safeContentsBag:
802                 if (options & INFO) BIO_printf (bio_err, "Safe Contents bag\n");
803                 print_attribs (out, bag->attrib, "Bag Attributes");
804                 return dump_certs_pkeys_bags (out, bag->value.safes, pass,
805                                                             passlen, options, pempass);
806                                         
807         default:
808                 BIO_printf (bio_err, "Warning unsupported bag type: ");
809                 i2a_ASN1_OBJECT (bio_err, bag->type);
810                 BIO_printf (bio_err, "\n");
811                 return 1;
812         break;
813         }
814         return 1;
815 }
816
817 /* Given a single certificate return a verified chain or NULL if error */
818
819 /* Hope this is OK .... */
820
821 int get_cert_chain (X509 *cert, X509_STORE *store, STACK_OF(X509) **chain)
822 {
823         X509_STORE_CTX store_ctx;
824         STACK_OF(X509) *chn;
825         int i;
826
827         /* FIXME: Should really check the return status of X509_STORE_CTX_init
828          * for an error, but how that fits into the return value of this
829          * function is less obvious. */
830         X509_STORE_CTX_init(&store_ctx, store, cert, NULL);
831         if (X509_verify_cert(&store_ctx) <= 0) {
832                 i = X509_STORE_CTX_get_error (&store_ctx);
833                 goto err;
834         }
835         chn =  X509_STORE_CTX_get1_chain(&store_ctx);
836         i = 0;
837         *chain = chn;
838 err:
839         X509_STORE_CTX_cleanup(&store_ctx);
840         
841         return i;
842 }       
843
844 int alg_print (BIO *x, X509_ALGOR *alg)
845 {
846         PBEPARAM *pbe;
847         unsigned char *p;
848         p = alg->parameter->value.sequence->data;
849         pbe = d2i_PBEPARAM (NULL, &p, alg->parameter->value.sequence->length);
850         BIO_printf (bio_err, "%s, Iteration %d\n", 
851         OBJ_nid2ln(OBJ_obj2nid(alg->algorithm)), ASN1_INTEGER_get(pbe->iter));
852         PBEPARAM_free (pbe);
853         return 0;
854 }
855
856 /* Load all certificates from a given file */
857
858 int cert_load(BIO *in, STACK_OF(X509) *sk)
859 {
860         int ret;
861         X509 *cert;
862         ret = 0;
863 #ifdef CRYPTO_MDEBUG
864         CRYPTO_push_info("cert_load(): reading one cert");
865 #endif
866         while((cert = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
867 #ifdef CRYPTO_MDEBUG
868                 CRYPTO_pop_info();
869 #endif
870                 ret = 1;
871                 sk_X509_push(sk, cert);
872 #ifdef CRYPTO_MDEBUG
873                 CRYPTO_push_info("cert_load(): reading one cert");
874 #endif
875         }
876 #ifdef CRYPTO_MDEBUG
877         CRYPTO_pop_info();
878 #endif
879         if(ret) ERR_clear_error();
880         return ret;
881 }
882
883 /* Generalised attribute print: handle PKCS#8 and bag attributes */
884
885 int print_attribs (BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst, char *name)
886 {
887         X509_ATTRIBUTE *attr;
888         ASN1_TYPE *av;
889         char *value;
890         int i, attr_nid;
891         if(!attrlst) {
892                 BIO_printf(out, "%s: <No Attributes>\n", name);
893                 return 1;
894         }
895         if(!sk_X509_ATTRIBUTE_num(attrlst)) {
896                 BIO_printf(out, "%s: <Empty Attributes>\n", name);
897                 return 1;
898         }
899         BIO_printf(out, "%s\n", name);
900         for(i = 0; i < sk_X509_ATTRIBUTE_num(attrlst); i++) {
901                 attr = sk_X509_ATTRIBUTE_value(attrlst, i);
902                 attr_nid = OBJ_obj2nid(attr->object);
903                 BIO_printf(out, "    ");
904                 if(attr_nid == NID_undef) {
905                         i2a_ASN1_OBJECT (out, attr->object);
906                         BIO_printf(out, ": ");
907                 } else BIO_printf(out, "%s: ", OBJ_nid2ln(attr_nid));
908
909                 if(sk_ASN1_TYPE_num(attr->value.set)) {
910                         av = sk_ASN1_TYPE_value(attr->value.set, 0);
911                         switch(av->type) {
912                                 case V_ASN1_BMPSTRING:
913                                 value = uni2asc(av->value.bmpstring->data,
914                                                av->value.bmpstring->length);
915                                 BIO_printf(out, "%s\n", value);
916                                 OPENSSL_free(value);
917                                 break;
918
919                                 case V_ASN1_OCTET_STRING:
920                                 hex_prin(out, av->value.octet_string->data,
921                                         av->value.octet_string->length);
922                                 BIO_printf(out, "\n");  
923                                 break;
924
925                                 case V_ASN1_BIT_STRING:
926                                 hex_prin(out, av->value.bit_string->data,
927                                         av->value.bit_string->length);
928                                 BIO_printf(out, "\n");  
929                                 break;
930
931                                 default:
932                                         BIO_printf(out, "<Unsupported tag %d>\n", av->type);
933                                 break;
934                         }
935                 } else BIO_printf(out, "<No Values>\n");
936         }
937         return 1;
938 }
939
940 void hex_prin(BIO *out, unsigned char *buf, int len)
941 {
942         int i;
943         for (i = 0; i < len; i++) BIO_printf (out, "%02X ", buf[i]);
944 }
945
946 #endif