Add PKCS#12 manpage and use MAC iteration counts by default.
[openssl.git] / apps / pkcs12.c
1 /* pkcs12.c */
2 #if !defined(NO_DES) && !defined(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 <openssl/des.h>
65 #include <openssl/pem.h>
66 #include <openssl/err.h>
67 #include <openssl/pkcs12.h>
68
69 #include "apps.h"
70 #define PROG pkcs12_main
71
72 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, STACK_OF(X509) **chain);
82 int dump_certs_keys_p12(BIO *out, PKCS12 *p12, char *pass, int passlen, int options);
83 int dump_certs_pkeys_bags(BIO *out, STACK *bags, char *pass, int passlen, int options);
84 int dump_certs_pkeys_bag(BIO *out, PKCS12_SAFEBAG *bags, char *pass, int passlen, int options);
85 int print_attribs(BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst, char *name);
86 void hex_prin(BIO *out, unsigned char *buf, int len);
87 int alg_print(BIO *x, X509_ALGOR *alg);
88 int cert_load(BIO *in, STACK_OF(X509) *sk);
89 int MAIN(int argc, char **argv)
90 {
91     char *infile=NULL, *outfile=NULL, *keyname = NULL;  
92     char *certfile=NULL;
93     BIO *in=NULL, *out = NULL, *inkey = NULL, *certsin = NULL;
94     char **args;
95     char *name = NULL;
96     PKCS12 *p12 = NULL;
97     char pass[50], macpass[50];
98     int export_cert = 0;
99     int options = 0;
100     int chain = 0;
101     int badarg = 0;
102     int iter = PKCS12_DEFAULT_ITER;
103     int maciter = PKCS12_DEFAULT_ITER;
104     int twopass = 0;
105     int keytype = 0;
106     int cert_pbe = NID_pbe_WithSHA1And40BitRC2_CBC;
107     int key_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
108     int ret = 1;
109     int macver = 1;
110     int noprompt = 0;
111     STACK *canames = NULL;
112     char *cpass = NULL, *mpass = NULL;
113
114     apps_startup();
115
116     enc = EVP_des_ede3_cbc();
117     if (bio_err == NULL ) bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
118
119     args = argv + 1;
120
121
122     while (*args) {
123         if (*args[0] == '-') {
124                 if (!strcmp (*args, "-nokeys")) options |= NOKEYS;
125                 else if (!strcmp (*args, "-keyex")) keytype = KEY_EX;
126                 else if (!strcmp (*args, "-keysig")) keytype = KEY_SIG;
127                 else if (!strcmp (*args, "-nocerts")) options |= NOCERTS;
128                 else if (!strcmp (*args, "-clcerts")) options |= CLCERTS;
129                 else if (!strcmp (*args, "-cacerts")) options |= CACERTS;
130                 else if (!strcmp (*args, "-noout")) options |= (NOKEYS|NOCERTS);
131                 else if (!strcmp (*args, "-info")) options |= INFO;
132                 else if (!strcmp (*args, "-chain")) chain = 1;
133                 else if (!strcmp (*args, "-twopass")) twopass = 1;
134                 else if (!strcmp (*args, "-nomacver")) macver = 0;
135                 else if (!strcmp (*args, "-descert"))
136                         cert_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
137                 else if (!strcmp (*args, "-export")) export_cert = 1;
138                 else if (!strcmp (*args, "-des")) enc=EVP_des_cbc();
139 #ifndef NO_IDEA
140                 else if (!strcmp (*args, "-idea")) enc=EVP_idea_cbc();
141 #endif
142                 else if (!strcmp (*args, "-des3")) enc = EVP_des_ede3_cbc();
143                 else if (!strcmp (*args, "-noiter")) iter = 1;
144                 else if (!strcmp (*args, "-maciter"))
145                                          maciter = PKCS12_DEFAULT_ITER;
146                 else if (!strcmp (*args, "-nomaciter"))
147                                          maciter = 1;
148                 else if (!strcmp (*args, "-nodes")) enc=NULL;
149                 else if (!strcmp (*args, "-certpbe")) {
150                         if (args[1]) {
151                                 args++;
152                                 cert_pbe=OBJ_txt2nid(*args);
153                                 if(cert_pbe == NID_undef) {
154                                         BIO_printf(bio_err,
155                                                  "Unknown PBE algorithm %s\n", *args);
156                                         badarg = 1;
157                                 }
158                         } else badarg = 1;
159                 } else if (!strcmp (*args, "-keypbe")) {
160                         if (args[1]) {
161                                 args++;
162                                 key_pbe=OBJ_txt2nid(*args);
163                                 if(key_pbe == NID_undef) {
164                                         BIO_printf(bio_err,
165                                                  "Unknown PBE algorithm %s\n", *args);
166                                         badarg = 1;
167                                 }
168                         } else badarg = 1;
169                 } else if (!strcmp (*args, "-inkey")) {
170                     if (args[1]) {
171                         args++; 
172                         keyname = *args;
173                     } else badarg = 1;
174                 } else if (!strcmp (*args, "-certfile")) {
175                     if (args[1]) {
176                         args++; 
177                         certfile = *args;
178                     } else badarg = 1;
179                 } else if (!strcmp (*args, "-name")) {
180                     if (args[1]) {
181                         args++; 
182                         name = *args;
183                     } else badarg = 1;
184                 } else if (!strcmp (*args, "-caname")) {
185                     if (args[1]) {
186                         args++; 
187                         if (!canames) canames = sk_new(NULL);
188                         sk_push(canames, *args);
189                     } else badarg = 1;
190                 } else if (!strcmp (*args, "-in")) {
191                     if (args[1]) {
192                         args++; 
193                         infile = *args;
194                     } else badarg = 1;
195                 } else if (!strcmp (*args, "-out")) {
196                     if (args[1]) {
197                         args++; 
198                         outfile = *args;
199                     } else badarg = 1;
200                 } else if (!strcmp (*args, "-envpass")) {
201                     if (args[1]) {
202                         args++; 
203                         if(!(cpass = getenv(*args))) {
204                                 BIO_printf(bio_err,
205                                  "Can't read environment variable %s\n", *args);
206                                 goto end;
207                         }
208                         noprompt = 1;
209                     } else badarg = 1;
210                 } else if (!strcmp (*args, "-password")) {
211                     if (args[1]) {
212                         args++; 
213                         cpass = *args;
214                         noprompt = 1;
215                     } else badarg = 1;
216                 } else badarg = 1;
217
218         } else badarg = 1;
219         args++;
220     }
221
222     if (badarg) {
223         BIO_printf (bio_err, "Usage: pkcs12 [options]\n");
224         BIO_printf (bio_err, "where options are\n");
225         BIO_printf (bio_err, "-export       output PKCS12 file\n");
226         BIO_printf (bio_err, "-chain        add certificate chain\n");
227         BIO_printf (bio_err, "-inkey file   private key if not infile\n");
228         BIO_printf (bio_err, "-certfile f   add all certs in f\n");
229         BIO_printf (bio_err, "-name \"name\"  use name as friendly name\n");
230         BIO_printf (bio_err, "-caname \"nm\"  use nm as CA friendly name (can be used more than once).\n");
231         BIO_printf (bio_err, "-in  infile   input filename\n");
232         BIO_printf (bio_err, "-out outfile  output filename\n");
233         BIO_printf (bio_err, "-noout        don't output anything, just verify.\n");
234         BIO_printf (bio_err, "-nomacver     don't verify MAC.\n");
235         BIO_printf (bio_err, "-nocerts      don't output certificates.\n");
236         BIO_printf (bio_err, "-clcerts      only output client certificates.\n");
237         BIO_printf (bio_err, "-cacerts      only output CA certificates.\n");
238         BIO_printf (bio_err, "-nokeys       don't output private keys.\n");
239         BIO_printf (bio_err, "-info         give info about PKCS#12 structure.\n");
240         BIO_printf (bio_err, "-des          encrypt private keys with DES\n");
241         BIO_printf (bio_err, "-des3         encrypt private keys with triple DES (default)\n");
242 #ifndef NO_IDEA
243         BIO_printf (bio_err, "-idea         encrypt private keys with idea\n");
244 #endif
245         BIO_printf (bio_err, "-nodes        don't encrypt private keys\n");
246         BIO_printf (bio_err, "-noiter       don't use encryption iteration\n");
247         BIO_printf (bio_err, "-maciter      use MAC iteration\n");
248         BIO_printf (bio_err, "-twopass      separate MAC, encryption passwords\n");
249         BIO_printf (bio_err, "-descert      encrypt PKCS#12 certificates with triple DES (default RC2-40)\n");
250         BIO_printf (bio_err, "-certpbe alg  specify certificate PBE algorithm (default RC2-40)\n");
251         BIO_printf (bio_err, "-keypbe alg   specify private key PBE algorithm (default 3DES)\n");
252         BIO_printf (bio_err, "-keyex        set MS key exchange type\n");
253         BIO_printf (bio_err, "-keysig       set MS key signature type\n");
254         BIO_printf (bio_err, "-password p   set import/export password (NOT RECOMMENDED)\n");
255         BIO_printf (bio_err, "-envpass p    set import/export password from environment\n");
256         goto end;
257     }
258
259     if(cpass) mpass = cpass;
260     else {
261         cpass = pass;
262         mpass = macpass;
263     }
264
265     ERR_load_crypto_strings();
266
267     if (!infile) in = BIO_new_fp(stdin, BIO_NOCLOSE);
268     else in = BIO_new_file(infile, "rb");
269     if (!in) {
270             BIO_printf(bio_err, "Error opening input file %s\n",
271                                                 infile ? infile : "<stdin>");
272             perror (infile);
273             goto end;
274    }
275
276    if (certfile) {
277         if(!(certsin = BIO_new_file(certfile, "r"))) {
278             BIO_printf(bio_err, "Can't open certificate file %s\n", certfile);
279             perror (certfile);
280             goto end;
281         }
282     }
283
284     if (keyname) {
285         if(!(inkey = BIO_new_file(keyname, "r"))) {
286             BIO_printf(bio_err, "Can't key certificate file %s\n", keyname);
287             perror (keyname);
288             goto end;
289         }
290      }
291
292     if (!outfile) out = BIO_new_fp(stdout, BIO_NOCLOSE);
293     else out = BIO_new_file(outfile, "wb");
294     if (!out) {
295         BIO_printf(bio_err, "Error opening output file %s\n",
296                                                 outfile ? outfile : "<stdout>");
297         perror (outfile);
298         goto end;
299     }
300     if (twopass) {
301         if(EVP_read_pw_string (macpass, 50, "Enter MAC Password:", export_cert))
302         {
303             BIO_printf (bio_err, "Can't read Password\n");
304             goto end;
305         }
306     }
307
308     if (export_cert) {
309         EVP_PKEY *key;
310         STACK *bags, *safes;
311         PKCS12_SAFEBAG *bag;
312         PKCS8_PRIV_KEY_INFO *p8;
313         PKCS7 *authsafe;
314         X509 *ucert = NULL;
315         STACK_OF(X509) *certs=NULL;
316         char *catmp;
317         int i;
318         unsigned char keyid[EVP_MAX_MD_SIZE];
319         unsigned int keyidlen = 0;
320         key = PEM_read_bio_PrivateKey(inkey ? inkey : in, NULL, NULL, NULL);
321         if (!inkey) (void) BIO_reset(in);
322         else BIO_free(inkey);
323         if (!key) {
324                 BIO_printf (bio_err, "Error loading private key\n");
325                 ERR_print_errors(bio_err);
326                 goto end;
327         }
328
329         certs = sk_X509_new(NULL);
330
331         /* Load in all certs in input file */
332         if(!cert_load(in, certs)) {
333                 BIO_printf(bio_err, "Error loading certificates from input\n");
334                 ERR_print_errors(bio_err);
335                 goto end;
336         }
337
338         for(i = 0; i < sk_X509_num(certs); i++) {
339                 ucert = sk_X509_value(certs, i);
340                 if(X509_check_private_key(ucert, key)) {
341                         X509_digest(ucert, EVP_sha1(), keyid, &keyidlen);
342                         break;
343                 }
344         }
345
346         if(!keyidlen) {
347                 BIO_printf(bio_err, "No certificate matches private key\n");
348                 goto end;
349         }
350         
351         bags = sk_new (NULL);
352
353         /* Add any more certificates asked for */
354         if (certsin) {
355                 if(!cert_load(certsin, certs)) {
356                         BIO_printf(bio_err, "Error loading certificates from certfile\n");
357                         ERR_print_errors(bio_err);
358                         goto end;
359                 }
360                 BIO_free(certsin);
361         }
362
363         /* If chaining get chain from user cert */
364         if (chain) {
365                 int vret;
366                 STACK_OF(X509) *chain2;
367                 vret = get_cert_chain (ucert, &chain2);
368                 if (vret) {
369                         BIO_printf (bio_err, "Error %s getting chain.\n",
370                                         X509_verify_cert_error_string(vret));
371                         goto end;
372                 }
373                 /* Exclude verified certificate */
374                 for (i = 1; i < sk_X509_num (chain2) ; i++) 
375                                  sk_X509_push(certs, sk_X509_value (chain2, i));
376                 sk_X509_free(chain2);
377                         
378         }
379
380         /* We now have loads of certificates: include them all */
381         for(i = 0; i < sk_X509_num(certs); i++) {
382                 X509 *cert = NULL;
383                 cert = sk_X509_value(certs, i);
384                 bag = M_PKCS12_x5092certbag(cert);
385                 /* If it matches private key set id */
386                 if(cert == ucert) {
387                         if(name) PKCS12_add_friendlyname(bag, name, -1);
388                         PKCS12_add_localkeyid(bag, keyid, keyidlen);
389                 } else if((catmp = sk_shift(canames))) 
390                                 PKCS12_add_friendlyname(bag, catmp, -1);
391                 sk_push(bags, (char *)bag);
392         }
393         sk_X509_pop_free(certs, X509_free);
394         if (canames) sk_free(canames);
395
396         if(!noprompt &&
397                 EVP_read_pw_string(pass, 50, "Enter Export Password:", 1)) {
398             BIO_printf (bio_err, "Can't read Password\n");
399             goto end;
400         }
401         if (!twopass) strcpy(macpass, pass);
402         /* Turn certbags into encrypted authsafe */
403         authsafe = PKCS12_pack_p7encdata(cert_pbe, cpass, -1, NULL, 0,
404                                                                  iter, bags);
405         sk_pop_free(bags, PKCS12_SAFEBAG_free);
406
407         if (!authsafe) {
408                 ERR_print_errors (bio_err);
409                 goto end;
410         }
411
412         safes = sk_new (NULL);
413         sk_push (safes, (char *)authsafe);
414
415         /* Make a shrouded key bag */
416         p8 = EVP_PKEY2PKCS8 (key);
417         EVP_PKEY_free(key);
418         if(keytype) PKCS8_add_keyusage(p8, keytype);
419         bag = PKCS12_MAKE_SHKEYBAG(key_pbe, cpass, -1, NULL, 0, iter, p8);
420         PKCS8_PRIV_KEY_INFO_free(p8);
421         if (name) PKCS12_add_friendlyname (bag, name, -1);
422         PKCS12_add_localkeyid (bag, keyid, keyidlen);
423         bags = sk_new(NULL);
424         sk_push (bags, (char *)bag);
425         /* Turn it into unencrypted safe bag */
426         authsafe = PKCS12_pack_p7data (bags);
427         sk_pop_free(bags, PKCS12_SAFEBAG_free);
428         sk_push (safes, (char *)authsafe);
429
430         p12 = PKCS12_init (NID_pkcs7_data);
431
432         M_PKCS12_pack_authsafes (p12, safes);
433
434         sk_pop_free(safes, PKCS7_free);
435
436         PKCS12_set_mac (p12, mpass, -1, NULL, 0, maciter, NULL);
437
438         i2d_PKCS12_bio (out, p12);
439
440         PKCS12_free(p12);
441
442         ret = 0;
443         goto end;
444         
445     }
446
447     if (!(p12 = d2i_PKCS12_bio (in, NULL))) {
448         ERR_print_errors(bio_err);
449         goto end;
450     }
451
452     if(!noprompt && EVP_read_pw_string(pass, 50, "Enter Import Password:", 0)) {
453         BIO_printf (bio_err, "Can't read Password\n");
454         goto end;
455     }
456
457     if (!twopass) strcpy(macpass, pass);
458
459     if (options & INFO) BIO_printf (bio_err, "MAC Iteration %ld\n", p12->mac->iter ? ASN1_INTEGER_get (p12->mac->iter) : 1);
460     if(macver) {
461         if (!PKCS12_verify_mac (p12, mpass, -1)) {
462             BIO_printf (bio_err, "Mac verify errror: invalid password?\n");
463             ERR_print_errors (bio_err);
464             goto end;
465         } else BIO_printf (bio_err, "MAC verified OK\n");
466     }
467
468     if (!dump_certs_keys_p12 (out, p12, cpass, -1, options)) {
469         BIO_printf(bio_err, "Error outputting keys and certificates\n");
470         ERR_print_errors (bio_err);
471         goto end;
472     }
473     PKCS12_free(p12);
474     ret = 0;
475     end:
476     BIO_free(out);
477     EXIT(ret);
478 }
479
480 int dump_certs_keys_p12 (BIO *out, PKCS12 *p12, char *pass,
481              int passlen, int options)
482 {
483         STACK *asafes, *bags;
484         int i, bagnid;
485         PKCS7 *p7;
486         if (!( asafes = M_PKCS12_unpack_authsafes (p12))) return 0;
487         for (i = 0; i < sk_num (asafes); i++) {
488                 p7 = (PKCS7 *) sk_value (asafes, i);
489                 bagnid = OBJ_obj2nid (p7->type);
490                 if (bagnid == NID_pkcs7_data) {
491                         bags = M_PKCS12_unpack_p7data (p7);
492                         if (options & INFO) BIO_printf (bio_err, "PKCS7 Data\n");
493                 } else if (bagnid == NID_pkcs7_encrypted) {
494                         if (options & INFO) {
495                                 BIO_printf (bio_err, "PKCS7 Encrypted data: ");
496                                 alg_print (bio_err, 
497                                         p7->d.encrypted->enc_data->algorithm);
498                         }
499                         bags = M_PKCS12_unpack_p7encdata (p7, pass, passlen);
500                 } else continue;
501                 if (!bags) return 0;
502                 if (!dump_certs_pkeys_bags (out, bags, pass, passlen, 
503                                                          options)) {
504                         sk_pop_free (bags, PKCS12_SAFEBAG_free);
505                         return 0;
506                 }
507                 sk_pop_free (bags, PKCS12_SAFEBAG_free);
508         }
509         sk_pop_free (asafes, PKCS7_free);
510         return 1;
511 }
512
513 int dump_certs_pkeys_bags (BIO *out, STACK *bags, char *pass,
514              int passlen, int options)
515 {
516         int i;
517         for (i = 0; i < sk_num (bags); i++) {
518                 if (!dump_certs_pkeys_bag (out,
519                          (PKCS12_SAFEBAG *)sk_value (bags, i), pass, passlen,
520                                                         options)) return 0;
521         }
522         return 1;
523 }
524
525 int dump_certs_pkeys_bag (BIO *out, PKCS12_SAFEBAG *bag, char *pass,
526              int passlen, int options)
527 {
528         EVP_PKEY *pkey;
529         PKCS8_PRIV_KEY_INFO *p8;
530         X509 *x509;
531         
532         switch (M_PKCS12_bag_type(bag))
533         {
534         case NID_keyBag:
535                 if (options & INFO) BIO_printf (bio_err, "Key bag\n");
536                 if (options & NOKEYS) return 1;
537                 print_attribs (out, bag->attrib, "Bag Attributes");
538                 p8 = bag->value.keybag;
539                 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
540                 print_attribs (out, p8->attributes, "Key Attributes");
541                 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, NULL);
542                 EVP_PKEY_free(pkey);
543         break;
544
545         case NID_pkcs8ShroudedKeyBag:
546                 if (options & INFO) {
547                         BIO_printf (bio_err, "Shrouded Keybag: ");
548                         alg_print (bio_err, bag->value.shkeybag->algor);
549                 }
550                 if (options & NOKEYS) return 1;
551                 print_attribs (out, bag->attrib, "Bag Attributes");
552                 if (!(p8 = M_PKCS12_decrypt_skey (bag, pass, passlen)))
553                                 return 0;
554                 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
555                 print_attribs (out, p8->attributes, "Key Attributes");
556                 PKCS8_PRIV_KEY_INFO_free(p8);
557                 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, NULL);
558                 EVP_PKEY_free(pkey);
559         break;
560
561         case NID_certBag:
562                 if (options & INFO) BIO_printf (bio_err, "Certificate bag\n");
563                 if (options & NOCERTS) return 1;
564                 if (PKCS12_get_attr(bag, NID_localKeyID)) {
565                         if (options & CACERTS) return 1;
566                 } else if (options & CLCERTS) return 1;
567                 print_attribs (out, bag->attrib, "Bag Attributes");
568                 if (M_PKCS12_cert_bag_type(bag) != NID_x509Certificate )
569                                                                  return 1;
570                 if (!(x509 = M_PKCS12_certbag2x509(bag))) return 0;
571                 dump_cert_text (out, x509);
572                 PEM_write_bio_X509 (out, x509);
573                 X509_free(x509);
574         break;
575
576         case NID_safeContentsBag:
577                 if (options & INFO) BIO_printf (bio_err, "Safe Contents bag\n");
578                 print_attribs (out, bag->attrib, "Bag Attributes");
579                 return dump_certs_pkeys_bags (out, bag->value.safes, pass,
580                                                             passlen, options);
581                                         
582         default:
583                 BIO_printf (bio_err, "Warning unsupported bag type: ");
584                 i2a_ASN1_OBJECT (bio_err, bag->type);
585                 BIO_printf (bio_err, "\n");
586                 return 1;
587         break;
588         }
589         return 1;
590 }
591
592 /* Given a single certificate return a verified chain or NULL if error */
593
594 /* Hope this is OK .... */
595
596 int get_cert_chain (X509 *cert, STACK_OF(X509) **chain)
597 {
598         X509_STORE *store;
599         X509_STORE_CTX store_ctx;
600         STACK_OF(X509) *chn;
601         int i;
602         X509 *x;
603         store = X509_STORE_new ();
604         X509_STORE_set_default_paths (store);
605         X509_STORE_CTX_init(&store_ctx, store, cert, NULL);
606         if (X509_verify_cert(&store_ctx) <= 0) {
607                 i = X509_STORE_CTX_get_error (&store_ctx);
608                 goto err;
609         }
610         chn =  sk_X509_dup(X509_STORE_CTX_get_chain (&store_ctx));
611         for (i = 0; i < sk_X509_num(chn); i++) {
612                 x = sk_X509_value(chn, i);
613                 CRYPTO_add(&x->references,1,CRYPTO_LOCK_X509);
614         }
615         i = 0;
616         *chain = chn;
617 err:
618         X509_STORE_CTX_cleanup(&store_ctx);
619         X509_STORE_free(store);
620         
621         return i;
622 }       
623
624 int alg_print (BIO *x, X509_ALGOR *alg)
625 {
626         PBEPARAM *pbe;
627         unsigned char *p;
628         p = alg->parameter->value.sequence->data;
629         pbe = d2i_PBEPARAM (NULL, &p, alg->parameter->value.sequence->length);
630         BIO_printf (bio_err, "%s, Iteration %d\n", 
631         OBJ_nid2ln(OBJ_obj2nid(alg->algorithm)), ASN1_INTEGER_get(pbe->iter));
632         PBEPARAM_free (pbe);
633         return 0;
634 }
635
636 /* Load all certificates from a given file */
637
638 int cert_load(BIO *in, STACK_OF(X509) *sk)
639 {
640         int ret;
641         X509 *cert;
642         ret = 0;
643         while((cert = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
644                 ret = 1;
645                 sk_X509_push(sk, cert);
646         }
647         if(ret) ERR_clear_error();
648         return ret;
649 }
650
651 /* Generalised attribute print: handle PKCS#8 and bag attributes */
652
653 int print_attribs (BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst, char *name)
654 {
655         X509_ATTRIBUTE *attr;
656         ASN1_TYPE *av;
657         char *value;
658         int i, attr_nid;
659         if(!attrlst) {
660                 BIO_printf(out, "%s: <No Attributes>\n", name);
661                 return 1;
662         }
663         if(!sk_X509_ATTRIBUTE_num(attrlst)) {
664                 BIO_printf(out, "%s: <Empty Attributes>\n", name);
665                 return 1;
666         }
667         BIO_printf(out, "%s\n", name);
668         for(i = 0; i < sk_X509_ATTRIBUTE_num(attrlst); i++) {
669                 attr = sk_X509_ATTRIBUTE_value(attrlst, i);
670                 attr_nid = OBJ_obj2nid(attr->object);
671                 BIO_printf(out, "    ");
672                 if(attr_nid == NID_undef) {
673                         i2a_ASN1_OBJECT (out, attr->object);
674                         BIO_printf(out, ": ");
675                 } else BIO_printf(out, "%s: ", OBJ_nid2ln(attr_nid));
676
677                 if(sk_ASN1_TYPE_num(attr->value.set)) {
678                         av = sk_ASN1_TYPE_value(attr->value.set, 0);
679                         switch(av->type) {
680                                 case V_ASN1_BMPSTRING:
681                                 value = uni2asc(av->value.bmpstring->data,
682                                                av->value.bmpstring->length);
683                                 BIO_printf(out, "%s\n", value);
684                                 Free(value);
685                                 break;
686
687                                 case V_ASN1_OCTET_STRING:
688                                 hex_prin(out, av->value.bit_string->data,
689                                         av->value.bit_string->length);
690                                 BIO_printf(out, "\n");  
691                                 break;
692
693                                 case V_ASN1_BIT_STRING:
694                                 hex_prin(out, av->value.octet_string->data,
695                                         av->value.octet_string->length);
696                                 BIO_printf(out, "\n");  
697                                 break;
698
699                                 default:
700                                         BIO_printf(out, "<Unsupported tag %d>\n", av->type);
701                                 break;
702                         }
703                 } else BIO_printf(out, "<No Values>\n");
704         }
705         return 1;
706 }
707
708 void hex_prin(BIO *out, unsigned char *buf, int len)
709 {
710         int i;
711         for (i = 0; i < len; i++) BIO_printf (out, "%02X ", buf[i]);
712 }
713
714 #endif