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