Continued multibyte character support.
[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 *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(ucert, 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                 X509 *cert = NULL;
358                 cert = sk_X509_value(certs, i);
359                 bag = M_PKCS12_x5092certbag(cert);
360                 /* If it matches private key set id */
361                 if(cert == ucert) {
362                         if(name) PKCS12_add_friendlyname(bag, name, -1);
363                         PKCS12_add_localkeyid(bag, keyid, keyidlen);
364                 } else if((catmp = sk_shift(canames))) 
365                                 PKCS12_add_friendlyname(bag, catmp, -1);
366                 sk_push(bags, (char *)bag);
367         }
368
369         if (canames) sk_free(canames);
370
371         if(!noprompt &&
372                 EVP_read_pw_string(pass, 50, "Enter Export Password:", 1)) {
373             BIO_printf (bio_err, "Can't read Password\n");
374             goto end;
375         }
376         if (!twopass) strcpy(macpass, pass);
377         /* Turn certbags into encrypted authsafe */
378         authsafe = PKCS12_pack_p7encdata(cert_pbe, cpass, -1, NULL, 0,
379                                                                  iter, bags);
380         sk_pop_free(bags, PKCS12_SAFEBAG_free);
381
382         if (!authsafe) {
383                 ERR_print_errors (bio_err);
384                 goto end;
385         }
386
387         safes = sk_new (NULL);
388         sk_push (safes, (char *)authsafe);
389
390         /* Make a shrouded key bag */
391         p8 = EVP_PKEY2PKCS8 (key);
392         EVP_PKEY_free(key);
393         if(keytype) PKCS8_add_keyusage(p8, keytype);
394         bag = PKCS12_MAKE_SHKEYBAG(NID_pbe_WithSHA1And3_Key_TripleDES_CBC,
395                         cpass, -1, NULL, 0, iter, p8);
396         PKCS8_PRIV_KEY_INFO_free(p8);
397         if (name) PKCS12_add_friendlyname (bag, name, -1);
398         PKCS12_add_localkeyid (bag, keyid, keyidlen);
399         bags = sk_new(NULL);
400         sk_push (bags, (char *)bag);
401         /* Turn it into unencrypted safe bag */
402         authsafe = PKCS12_pack_p7data (bags);
403         sk_pop_free(bags, PKCS12_SAFEBAG_free);
404         sk_push (safes, (char *)authsafe);
405
406         p12 = PKCS12_init (NID_pkcs7_data);
407
408         M_PKCS12_pack_authsafes (p12, safes);
409
410         sk_pop_free(safes, PKCS7_free);
411
412         PKCS12_set_mac (p12, mpass, -1, NULL, 0, maciter, NULL);
413
414         i2d_PKCS12_bio (out, p12);
415
416         PKCS12_free(p12);
417
418         ret = 0;
419         goto end;
420         
421     }
422
423     if (!(p12 = d2i_PKCS12_bio (in, NULL))) {
424         ERR_print_errors(bio_err);
425         goto end;
426     }
427
428     if(!noprompt && EVP_read_pw_string(pass, 50, "Enter Import Password:", 0)) {
429         BIO_printf (bio_err, "Can't read Password\n");
430         goto end;
431     }
432
433     if (!twopass) strcpy(macpass, pass);
434
435     if (options & INFO) BIO_printf (bio_err, "MAC Iteration %ld\n", p12->mac->iter ? ASN1_INTEGER_get (p12->mac->iter) : 1);
436     if(macver) {
437         if (!PKCS12_verify_mac (p12, mpass, -1)) {
438             BIO_printf (bio_err, "Mac verify errror: invalid password?\n");
439             ERR_print_errors (bio_err);
440             goto end;
441         } else BIO_printf (bio_err, "MAC verified OK\n");
442     }
443
444     if (!dump_certs_keys_p12 (out, p12, cpass, -1, options)) {
445         BIO_printf(bio_err, "Error outputting keys and certificates\n");
446         ERR_print_errors (bio_err);
447         goto end;
448     }
449     PKCS12_free(p12);
450     ret = 0;
451     end:
452     BIO_free(out);
453     EXIT(ret);
454 }
455
456 int dump_cert_text (BIO *out, X509 *x)
457 {
458         char buf[256];
459         X509_NAME_oneline(X509_get_subject_name(x),buf,256);
460         BIO_puts(out,"subject=");
461         BIO_puts(out,buf);
462
463         X509_NAME_oneline(X509_get_issuer_name(x),buf,256);
464         BIO_puts(out,"\nissuer= ");
465         BIO_puts(out,buf);
466         BIO_puts(out,"\n");
467         return 0;
468 }
469
470 int dump_certs_keys_p12 (BIO *out, PKCS12 *p12, char *pass,
471              int passlen, int options)
472 {
473         STACK *asafes, *bags;
474         int i, bagnid;
475         PKCS7 *p7;
476         if (!( asafes = M_PKCS12_unpack_authsafes (p12))) return 0;
477         for (i = 0; i < sk_num (asafes); i++) {
478                 p7 = (PKCS7 *) sk_value (asafes, i);
479                 bagnid = OBJ_obj2nid (p7->type);
480                 if (bagnid == NID_pkcs7_data) {
481                         bags = M_PKCS12_unpack_p7data (p7);
482                         if (options & INFO) BIO_printf (bio_err, "PKCS7 Data\n");
483                 } else if (bagnid == NID_pkcs7_encrypted) {
484                         if (options & INFO) {
485                                 BIO_printf (bio_err, "PKCS7 Encrypted data: ");
486                                 alg_print (bio_err, 
487                                         p7->d.encrypted->enc_data->algorithm);
488                         }
489                         bags = M_PKCS12_unpack_p7encdata (p7, pass, passlen);
490                 } else continue;
491                 if (!bags) return 0;
492                 if (!dump_certs_pkeys_bags (out, bags, pass, passlen, 
493                                                          options)) {
494                         sk_pop_free (bags, PKCS12_SAFEBAG_free);
495                         return 0;
496                 }
497                 sk_pop_free (bags, PKCS12_SAFEBAG_free);
498         }
499         sk_pop_free (asafes, PKCS7_free);
500         return 1;
501 }
502
503 int dump_certs_pkeys_bags (BIO *out, STACK *bags, char *pass,
504              int passlen, int options)
505 {
506         int i;
507         for (i = 0; i < sk_num (bags); i++) {
508                 if (!dump_certs_pkeys_bag (out,
509                          (PKCS12_SAFEBAG *)sk_value (bags, i), pass, passlen,
510                                                         options)) return 0;
511         }
512         return 1;
513 }
514
515 int dump_certs_pkeys_bag (BIO *out, PKCS12_SAFEBAG *bag, char *pass,
516              int passlen, int options)
517 {
518         EVP_PKEY *pkey;
519         PKCS8_PRIV_KEY_INFO *p8;
520         X509 *x509;
521         
522         switch (M_PKCS12_bag_type(bag))
523         {
524         case NID_keyBag:
525                 if (options & INFO) BIO_printf (bio_err, "Key bag\n");
526                 if (options & NOKEYS) return 1;
527                 print_attribs (out, bag->attrib, "Bag Attributes");
528                 p8 = bag->value.keybag;
529                 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
530                 print_attribs (out, p8->attributes, "Key Attributes");
531                 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, NULL);
532                 EVP_PKEY_free(pkey);
533         break;
534
535         case NID_pkcs8ShroudedKeyBag:
536                 if (options & INFO) {
537                         BIO_printf (bio_err, "Shrouded Keybag: ");
538                         alg_print (bio_err, bag->value.shkeybag->algor);
539                 }
540                 if (options & NOKEYS) return 1;
541                 print_attribs (out, bag->attrib, "Bag Attributes");
542                 if (!(p8 = M_PKCS12_decrypt_skey (bag, pass, passlen)))
543                                 return 0;
544                 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
545                 print_attribs (out, p8->attributes, "Key Attributes");
546                 PKCS8_PRIV_KEY_INFO_free(p8);
547                 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, NULL);
548                 EVP_PKEY_free(pkey);
549         break;
550
551         case NID_certBag:
552                 if (options & INFO) BIO_printf (bio_err, "Certificate bag\n");
553                 if (options & NOCERTS) return 1;
554                 if (PKCS12_get_attr(bag, NID_localKeyID)) {
555                         if (options & CACERTS) return 1;
556                 } else if (options & CLCERTS) return 1;
557                 print_attribs (out, bag->attrib, "Bag Attributes");
558                 if (M_PKCS12_cert_bag_type(bag) != NID_x509Certificate )
559                                                                  return 1;
560                 if (!(x509 = M_PKCS12_certbag2x509(bag))) return 0;
561                 dump_cert_text (out, x509);
562                 PEM_write_bio_X509 (out, x509);
563                 X509_free(x509);
564         break;
565
566         case NID_safeContentsBag:
567                 if (options & INFO) BIO_printf (bio_err, "Safe Contents bag\n");
568                 print_attribs (out, bag->attrib, "Bag Attributes");
569                 return dump_certs_pkeys_bags (out, bag->value.safes, pass,
570                                                             passlen, options);
571                                         
572         default:
573                 BIO_printf (bio_err, "Warning unsupported bag type: ");
574                 i2a_ASN1_OBJECT (bio_err, bag->type);
575                 BIO_printf (bio_err, "\n");
576                 return 1;
577         break;
578         }
579         return 1;
580 }
581
582 /* Given a single certificate return a verified chain or NULL if error */
583
584 /* Hope this is OK .... */
585
586 int get_cert_chain (X509 *cert, STACK_OF(X509) **chain)
587 {
588         X509_STORE *store;
589         X509_STORE_CTX store_ctx;
590         STACK_OF(X509) *chn;
591         int i;
592         X509 *x;
593         store = X509_STORE_new ();
594         X509_STORE_set_default_paths (store);
595         X509_STORE_CTX_init(&store_ctx, store, cert, NULL);
596         if (X509_verify_cert(&store_ctx) <= 0) {
597                 i = X509_STORE_CTX_get_error (&store_ctx);
598                 goto err;
599         }
600         chn =  sk_X509_dup(X509_STORE_CTX_get_chain (&store_ctx));
601         for (i = 0; i < sk_X509_num(chn); i++) {
602                 x = sk_X509_value(chn, i);
603                 CRYPTO_add(&x->references,1,CRYPTO_LOCK_X509);
604         }
605         i = 0;
606         *chain = chn;
607 err:
608         X509_STORE_CTX_cleanup(&store_ctx);
609         X509_STORE_free(store);
610         
611         return i;
612 }       
613
614 int alg_print (BIO *x, X509_ALGOR *alg)
615 {
616         PBEPARAM *pbe;
617         unsigned char *p;
618         p = alg->parameter->value.sequence->data;
619         pbe = d2i_PBEPARAM (NULL, &p, alg->parameter->value.sequence->length);
620         BIO_printf (bio_err, "%s, Iteration %d\n", 
621         OBJ_nid2ln(OBJ_obj2nid(alg->algorithm)), ASN1_INTEGER_get(pbe->iter));
622         PBEPARAM_free (pbe);
623         return 0;
624 }
625
626 /* Load all certificates from a given file */
627
628 int cert_load(BIO *in, STACK_OF(X509) *sk)
629 {
630         int ret;
631         X509 *cert;
632         ret = 0;
633         while((cert = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
634                 ret = 1;
635                 sk_X509_push(sk, cert);
636         }
637         if(ret) ERR_clear_error();
638         return ret;
639 }
640
641 /* Generalised attribute print: handle PKCS#8 and bag attributes */
642
643 int print_attribs (BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst, char *name)
644 {
645         X509_ATTRIBUTE *attr;
646         ASN1_TYPE *av;
647         char *value;
648         int i, attr_nid;
649         if(!attrlst) {
650                 BIO_printf(out, "%s: <No Attributes>\n", name);
651                 return 1;
652         }
653         if(!sk_X509_ATTRIBUTE_num(attrlst)) {
654                 BIO_printf(out, "%s: <Empty Attributes>\n", name);
655                 return 1;
656         }
657         BIO_printf(out, "%s\n", name);
658         for(i = 0; i < sk_X509_ATTRIBUTE_num(attrlst); i++) {
659                 attr = sk_X509_ATTRIBUTE_value(attrlst, i);
660                 attr_nid = OBJ_obj2nid(attr->object);
661                 BIO_printf(out, "    ");
662                 if(attr_nid == NID_undef) {
663                         i2a_ASN1_OBJECT (out, attr->object);
664                         BIO_printf(out, ": ");
665                 } else BIO_printf(out, "%s: ", OBJ_nid2ln(attr_nid));
666
667                 if(sk_ASN1_TYPE_num(attr->value.set)) {
668                         av = sk_ASN1_TYPE_value(attr->value.set, 0);
669                         switch(av->type) {
670                                 case V_ASN1_BMPSTRING:
671                                 value = uni2asc(av->value.bmpstring->data,
672                                                av->value.bmpstring->length);
673                                 BIO_printf(out, "%s\n", value);
674                                 Free(value);
675                                 break;
676
677                                 case V_ASN1_OCTET_STRING:
678                                 hex_prin(out, av->value.bit_string->data,
679                                         av->value.bit_string->length);
680                                 BIO_printf(out, "\n");  
681                                 break;
682
683                                 case V_ASN1_BIT_STRING:
684                                 hex_prin(out, av->value.octet_string->data,
685                                         av->value.octet_string->length);
686                                 BIO_printf(out, "\n");  
687                                 break;
688
689                                 default:
690                                         BIO_printf(out, "<Unsupported tag %d>\n", av->type);
691                                 break;
692                         }
693                 } else BIO_printf(out, "<No Values>\n");
694         }
695         return 1;
696 }
697
698 void hex_prin(BIO *out, unsigned char *buf, int len)
699 {
700         int i;
701         for (i = 0; i < len; i++) BIO_printf (out, "%02X ", buf[i]);
702 }
703
704 #endif