Modify verify code to handle self signed certificates.
[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 = 1;
104     int twopass = 0;
105     int keytype = 0;
106     int cert_pbe = NID_pbe_WithSHA1And40BitRC2_CBC;
107     int ret = 1;
108     int macver = 1;
109     int noprompt = 0;
110     STACK *canames = NULL;
111     char *cpass = NULL, *mpass = NULL;
112
113     apps_startup();
114
115     enc = EVP_des_ede3_cbc();
116     if (bio_err == NULL ) bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
117
118     args = argv + 1;
119
120
121     while (*args) {
122         if (*args[0] == '-') {
123                 if (!strcmp (*args, "-nokeys")) options |= NOKEYS;
124                 else if (!strcmp (*args, "-keyex")) keytype = KEY_EX;
125                 else if (!strcmp (*args, "-keysig")) keytype = KEY_SIG;
126                 else if (!strcmp (*args, "-nocerts")) options |= NOCERTS;
127                 else if (!strcmp (*args, "-clcerts")) options |= CLCERTS;
128                 else if (!strcmp (*args, "-cacerts")) options |= CACERTS;
129                 else if (!strcmp (*args, "-noout")) options |= (NOKEYS|NOCERTS);
130                 else if (!strcmp (*args, "-info")) options |= INFO;
131                 else if (!strcmp (*args, "-chain")) chain = 1;
132                 else if (!strcmp (*args, "-twopass")) twopass = 1;
133                 else if (!strcmp (*args, "-nomacver")) macver = 0;
134                 else if (!strcmp (*args, "-descert"))
135                         cert_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
136                 else if (!strcmp (*args, "-export")) export_cert = 1;
137                 else if (!strcmp (*args, "-des")) enc=EVP_des_cbc();
138 #ifndef NO_IDEA
139                 else if (!strcmp (*args, "-idea")) enc=EVP_idea_cbc();
140 #endif
141                 else if (!strcmp (*args, "-des3")) enc = EVP_des_ede3_cbc();
142                 else if (!strcmp (*args, "-noiter")) iter = 1;
143                 else if (!strcmp (*args, "-maciter"))
144                                          maciter = PKCS12_DEFAULT_ITER;
145                 else if (!strcmp (*args, "-nodes")) enc=NULL;
146                 else if (!strcmp (*args, "-inkey")) {
147                     if (args[1]) {
148                         args++; 
149                         keyname = *args;
150                     } else badarg = 1;
151                 } else if (!strcmp (*args, "-certfile")) {
152                     if (args[1]) {
153                         args++; 
154                         certfile = *args;
155                     } else badarg = 1;
156                 } else if (!strcmp (*args, "-name")) {
157                     if (args[1]) {
158                         args++; 
159                         name = *args;
160                     } else badarg = 1;
161                 } else if (!strcmp (*args, "-caname")) {
162                     if (args[1]) {
163                         args++; 
164                         if (!canames) canames = sk_new(NULL);
165                         sk_push(canames, *args);
166                     } else badarg = 1;
167                 } else if (!strcmp (*args, "-in")) {
168                     if (args[1]) {
169                         args++; 
170                         infile = *args;
171                     } else badarg = 1;
172                 } else if (!strcmp (*args, "-out")) {
173                     if (args[1]) {
174                         args++; 
175                         outfile = *args;
176                     } else badarg = 1;
177                 } else if (!strcmp (*args, "-envpass")) {
178                     if (args[1]) {
179                         args++; 
180                         if(!(cpass = getenv(*args))) {
181                                 BIO_printf(bio_err,
182                                  "Can't read environment variable %s\n", *args);
183                                 goto end;
184                         }
185                         noprompt = 1;
186                     } else badarg = 1;
187                 } else if (!strcmp (*args, "-password")) {
188                     if (args[1]) {
189                         args++; 
190                         cpass = *args;
191                         noprompt = 1;
192                     } else badarg = 1;
193                 } else badarg = 1;
194
195         } else badarg = 1;
196         args++;
197     }
198
199     if (badarg) {
200         BIO_printf (bio_err, "Usage: pkcs12 [options]\n");
201         BIO_printf (bio_err, "where options are\n");
202         BIO_printf (bio_err, "-export       output PKCS12 file\n");
203         BIO_printf (bio_err, "-chain        add certificate chain\n");
204         BIO_printf (bio_err, "-inkey file   private key if not infile\n");
205         BIO_printf (bio_err, "-certfile f   add all certs in f\n");
206         BIO_printf (bio_err, "-name \"name\"  use name as friendly name\n");
207         BIO_printf (bio_err, "-caname \"nm\"  use nm as CA friendly name (can be used more than once).\n");
208         BIO_printf (bio_err, "-in  infile   input filename\n");
209         BIO_printf (bio_err, "-out outfile  output filename\n");
210         BIO_printf (bio_err, "-noout        don't output anything, just verify.\n");
211         BIO_printf (bio_err, "-nomacver     don't verify MAC.\n");
212         BIO_printf (bio_err, "-nocerts      don't output certificates.\n");
213         BIO_printf (bio_err, "-clcerts      only output client certificates.\n");
214         BIO_printf (bio_err, "-cacerts      only output CA certificates.\n");
215         BIO_printf (bio_err, "-nokeys       don't output private keys.\n");
216         BIO_printf (bio_err, "-info         give info about PKCS#12 structure.\n");
217         BIO_printf (bio_err, "-des          encrypt private keys with DES\n");
218         BIO_printf (bio_err, "-des3         encrypt private keys with triple DES (default)\n");
219 #ifndef NO_IDEA
220         BIO_printf (bio_err, "-idea         encrypt private keys with idea\n");
221 #endif
222         BIO_printf (bio_err, "-nodes        don't encrypt private keys\n");
223         BIO_printf (bio_err, "-noiter       don't use encryption iteration\n");
224         BIO_printf (bio_err, "-maciter      use MAC iteration\n");
225         BIO_printf (bio_err, "-twopass      separate MAC, encryption passwords\n");
226         BIO_printf (bio_err, "-descert      encrypt PKCS#12 certificates with triple DES (default RC2-40)\n");
227         BIO_printf (bio_err, "-keyex        set MS key exchange type\n");
228         BIO_printf (bio_err, "-keysig       set MS key signature type\n");
229         BIO_printf (bio_err, "-password p   set import/export password (NOT RECOMMENDED)\n");
230         BIO_printf (bio_err, "-envpass p    set import/export password from environment\n");
231         goto end;
232     }
233
234     if(cpass) mpass = cpass;
235     else {
236         cpass = pass;
237         mpass = macpass;
238     }
239
240     ERR_load_crypto_strings();
241
242     if (!infile) in = BIO_new_fp(stdin, BIO_NOCLOSE);
243     else in = BIO_new_file(infile, "rb");
244     if (!in) {
245             BIO_printf(bio_err, "Error opening input file %s\n",
246                                                 infile ? infile : "<stdin>");
247             perror (infile);
248             goto end;
249    }
250
251    if (certfile) {
252         if(!(certsin = BIO_new_file(certfile, "r"))) {
253             BIO_printf(bio_err, "Can't open certificate file %s\n", certfile);
254             perror (certfile);
255             goto end;
256         }
257     }
258
259     if (keyname) {
260         if(!(inkey = BIO_new_file(keyname, "r"))) {
261             BIO_printf(bio_err, "Can't key certificate file %s\n", keyname);
262             perror (keyname);
263             goto end;
264         }
265      }
266
267     if (!outfile) out = BIO_new_fp(stdout, BIO_NOCLOSE);
268     else out = BIO_new_file(outfile, "wb");
269     if (!out) {
270         BIO_printf(bio_err, "Error opening output file %s\n",
271                                                 outfile ? outfile : "<stdout>");
272         perror (outfile);
273         goto end;
274     }
275     if (twopass) {
276         if(EVP_read_pw_string (macpass, 50, "Enter MAC Password:", export_cert))
277         {
278             BIO_printf (bio_err, "Can't read Password\n");
279             goto end;
280         }
281     }
282
283     if (export_cert) {
284         EVP_PKEY *key;
285         STACK *bags, *safes;
286         PKCS12_SAFEBAG *bag;
287         PKCS8_PRIV_KEY_INFO *p8;
288         PKCS7 *authsafe;
289         X509 *ucert = NULL;
290         STACK_OF(X509) *certs;
291         char *catmp;
292         int i;
293         unsigned char keyid[EVP_MAX_MD_SIZE];
294         unsigned int keyidlen = 0;
295         key = PEM_read_bio_PrivateKey(inkey ? inkey : in, NULL, NULL, NULL);
296         if (!inkey) (void) BIO_reset(in);
297         if (!key) {
298                 BIO_printf (bio_err, "Error loading private key\n");
299                 ERR_print_errors(bio_err);
300                 goto end;
301         }
302
303         certs = sk_X509_new(NULL);
304
305         /* Load in all certs in input file */
306         if(!cert_load(in, certs)) {
307                 BIO_printf(bio_err, "Error loading certificates from input\n");
308                 ERR_print_errors(bio_err);
309                 goto end;
310         }
311
312         for(i = 0; i < sk_X509_num(certs); i++) {
313                 ucert = sk_X509_value(certs, i);
314                 if(X509_check_private_key(ucert, key)) {
315                         X509_digest(ucert, EVP_sha1(), keyid, &keyidlen);
316                         break;
317                 }
318         }
319
320         if(!keyidlen) {
321                 BIO_printf(bio_err, "No certificate matches private key\n");
322                 goto end;
323         }
324         
325         bags = sk_new (NULL);
326
327         /* Add any more certificates asked for */
328         if (certsin) {
329                 if(!cert_load(certsin, certs)) {
330                         BIO_printf(bio_err, "Error loading certificates from certfile\n");
331                         ERR_print_errors(bio_err);
332                         goto end;
333                 }
334                 BIO_free(certsin);
335         }
336
337         /* If chaining get chain from user cert */
338         if (chain) {
339                 int vret;
340                 STACK_OF(X509) *chain2;
341                 vret = get_cert_chain (ucert, &chain2);
342                 if (vret) {
343                         BIO_printf (bio_err, "Error %s getting chain.\n",
344                                         X509_verify_cert_error_string(vret));
345                         goto end;
346                 }
347                 /* Exclude verified certificate */
348                 for (i = 1; i < sk_X509_num (chain2) ; i++) 
349                                  sk_X509_push(certs, sk_X509_value (chain2, i));
350                 sk_X509_free(chain2);
351                         
352         }
353
354         /* We now have loads of certificates: include them all */
355         for(i = 0; i < sk_X509_num(certs); i++) {
356                 X509 *cert = NULL;
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_certs_keys_p12 (BIO *out, PKCS12 *p12, char *pass,
456              int passlen, int options)
457 {
458         STACK *asafes, *bags;
459         int i, bagnid;
460         PKCS7 *p7;
461         if (!( asafes = M_PKCS12_unpack_authsafes (p12))) return 0;
462         for (i = 0; i < sk_num (asafes); i++) {
463                 p7 = (PKCS7 *) sk_value (asafes, i);
464                 bagnid = OBJ_obj2nid (p7->type);
465                 if (bagnid == NID_pkcs7_data) {
466                         bags = M_PKCS12_unpack_p7data (p7);
467                         if (options & INFO) BIO_printf (bio_err, "PKCS7 Data\n");
468                 } else if (bagnid == NID_pkcs7_encrypted) {
469                         if (options & INFO) {
470                                 BIO_printf (bio_err, "PKCS7 Encrypted data: ");
471                                 alg_print (bio_err, 
472                                         p7->d.encrypted->enc_data->algorithm);
473                         }
474                         bags = M_PKCS12_unpack_p7encdata (p7, pass, passlen);
475                 } else continue;
476                 if (!bags) return 0;
477                 if (!dump_certs_pkeys_bags (out, bags, pass, passlen, 
478                                                          options)) {
479                         sk_pop_free (bags, PKCS12_SAFEBAG_free);
480                         return 0;
481                 }
482                 sk_pop_free (bags, PKCS12_SAFEBAG_free);
483         }
484         sk_pop_free (asafes, PKCS7_free);
485         return 1;
486 }
487
488 int dump_certs_pkeys_bags (BIO *out, STACK *bags, char *pass,
489              int passlen, int options)
490 {
491         int i;
492         for (i = 0; i < sk_num (bags); i++) {
493                 if (!dump_certs_pkeys_bag (out,
494                          (PKCS12_SAFEBAG *)sk_value (bags, i), pass, passlen,
495                                                         options)) return 0;
496         }
497         return 1;
498 }
499
500 int dump_certs_pkeys_bag (BIO *out, PKCS12_SAFEBAG *bag, char *pass,
501              int passlen, int options)
502 {
503         EVP_PKEY *pkey;
504         PKCS8_PRIV_KEY_INFO *p8;
505         X509 *x509;
506         
507         switch (M_PKCS12_bag_type(bag))
508         {
509         case NID_keyBag:
510                 if (options & INFO) BIO_printf (bio_err, "Key bag\n");
511                 if (options & NOKEYS) return 1;
512                 print_attribs (out, bag->attrib, "Bag Attributes");
513                 p8 = bag->value.keybag;
514                 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
515                 print_attribs (out, p8->attributes, "Key Attributes");
516                 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, NULL);
517                 EVP_PKEY_free(pkey);
518         break;
519
520         case NID_pkcs8ShroudedKeyBag:
521                 if (options & INFO) {
522                         BIO_printf (bio_err, "Shrouded Keybag: ");
523                         alg_print (bio_err, bag->value.shkeybag->algor);
524                 }
525                 if (options & NOKEYS) return 1;
526                 print_attribs (out, bag->attrib, "Bag Attributes");
527                 if (!(p8 = M_PKCS12_decrypt_skey (bag, pass, passlen)))
528                                 return 0;
529                 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
530                 print_attribs (out, p8->attributes, "Key Attributes");
531                 PKCS8_PRIV_KEY_INFO_free(p8);
532                 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, NULL);
533                 EVP_PKEY_free(pkey);
534         break;
535
536         case NID_certBag:
537                 if (options & INFO) BIO_printf (bio_err, "Certificate bag\n");
538                 if (options & NOCERTS) return 1;
539                 if (PKCS12_get_attr(bag, NID_localKeyID)) {
540                         if (options & CACERTS) return 1;
541                 } else if (options & CLCERTS) return 1;
542                 print_attribs (out, bag->attrib, "Bag Attributes");
543                 if (M_PKCS12_cert_bag_type(bag) != NID_x509Certificate )
544                                                                  return 1;
545                 if (!(x509 = M_PKCS12_certbag2x509(bag))) return 0;
546                 dump_cert_text (out, x509);
547                 PEM_write_bio_X509 (out, x509);
548                 X509_free(x509);
549         break;
550
551         case NID_safeContentsBag:
552                 if (options & INFO) BIO_printf (bio_err, "Safe Contents bag\n");
553                 print_attribs (out, bag->attrib, "Bag Attributes");
554                 return dump_certs_pkeys_bags (out, bag->value.safes, pass,
555                                                             passlen, options);
556                                         
557         default:
558                 BIO_printf (bio_err, "Warning unsupported bag type: ");
559                 i2a_ASN1_OBJECT (bio_err, bag->type);
560                 BIO_printf (bio_err, "\n");
561                 return 1;
562         break;
563         }
564         return 1;
565 }
566
567 /* Given a single certificate return a verified chain or NULL if error */
568
569 /* Hope this is OK .... */
570
571 int get_cert_chain (X509 *cert, STACK_OF(X509) **chain)
572 {
573         X509_STORE *store;
574         X509_STORE_CTX store_ctx;
575         STACK_OF(X509) *chn;
576         int i;
577         X509 *x;
578         store = X509_STORE_new ();
579         X509_STORE_set_default_paths (store);
580         X509_STORE_CTX_init(&store_ctx, store, cert, NULL);
581         if (X509_verify_cert(&store_ctx) <= 0) {
582                 i = X509_STORE_CTX_get_error (&store_ctx);
583                 goto err;
584         }
585         chn =  sk_X509_dup(X509_STORE_CTX_get_chain (&store_ctx));
586         for (i = 0; i < sk_X509_num(chn); i++) {
587                 x = sk_X509_value(chn, i);
588                 CRYPTO_add(&x->references,1,CRYPTO_LOCK_X509);
589         }
590         i = 0;
591         *chain = chn;
592 err:
593         X509_STORE_CTX_cleanup(&store_ctx);
594         X509_STORE_free(store);
595         
596         return i;
597 }       
598
599 int alg_print (BIO *x, X509_ALGOR *alg)
600 {
601         PBEPARAM *pbe;
602         unsigned char *p;
603         p = alg->parameter->value.sequence->data;
604         pbe = d2i_PBEPARAM (NULL, &p, alg->parameter->value.sequence->length);
605         BIO_printf (bio_err, "%s, Iteration %d\n", 
606         OBJ_nid2ln(OBJ_obj2nid(alg->algorithm)), ASN1_INTEGER_get(pbe->iter));
607         PBEPARAM_free (pbe);
608         return 0;
609 }
610
611 /* Load all certificates from a given file */
612
613 int cert_load(BIO *in, STACK_OF(X509) *sk)
614 {
615         int ret;
616         X509 *cert;
617         ret = 0;
618         while((cert = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
619                 ret = 1;
620                 sk_X509_push(sk, cert);
621         }
622         if(ret) ERR_clear_error();
623         return ret;
624 }
625
626 /* Generalised attribute print: handle PKCS#8 and bag attributes */
627
628 int print_attribs (BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst, char *name)
629 {
630         X509_ATTRIBUTE *attr;
631         ASN1_TYPE *av;
632         char *value;
633         int i, attr_nid;
634         if(!attrlst) {
635                 BIO_printf(out, "%s: <No Attributes>\n", name);
636                 return 1;
637         }
638         if(!sk_X509_ATTRIBUTE_num(attrlst)) {
639                 BIO_printf(out, "%s: <Empty Attributes>\n", name);
640                 return 1;
641         }
642         BIO_printf(out, "%s\n", name);
643         for(i = 0; i < sk_X509_ATTRIBUTE_num(attrlst); i++) {
644                 attr = sk_X509_ATTRIBUTE_value(attrlst, i);
645                 attr_nid = OBJ_obj2nid(attr->object);
646                 BIO_printf(out, "    ");
647                 if(attr_nid == NID_undef) {
648                         i2a_ASN1_OBJECT (out, attr->object);
649                         BIO_printf(out, ": ");
650                 } else BIO_printf(out, "%s: ", OBJ_nid2ln(attr_nid));
651
652                 if(sk_ASN1_TYPE_num(attr->value.set)) {
653                         av = sk_ASN1_TYPE_value(attr->value.set, 0);
654                         switch(av->type) {
655                                 case V_ASN1_BMPSTRING:
656                                 value = uni2asc(av->value.bmpstring->data,
657                                                av->value.bmpstring->length);
658                                 BIO_printf(out, "%s\n", value);
659                                 Free(value);
660                                 break;
661
662                                 case V_ASN1_OCTET_STRING:
663                                 hex_prin(out, av->value.bit_string->data,
664                                         av->value.bit_string->length);
665                                 BIO_printf(out, "\n");  
666                                 break;
667
668                                 case V_ASN1_BIT_STRING:
669                                 hex_prin(out, av->value.octet_string->data,
670                                         av->value.octet_string->length);
671                                 BIO_printf(out, "\n");  
672                                 break;
673
674                                 default:
675                                         BIO_printf(out, "<Unsupported tag %d>\n", av->type);
676                                 break;
677                         }
678                 } else BIO_printf(out, "<No Values>\n");
679         }
680         return 1;
681 }
682
683 void hex_prin(BIO *out, unsigned char *buf, int len)
684 {
685         int i;
686         for (i = 0; i < len; i++) BIO_printf (out, "%02X ", buf[i]);
687 }
688
689 #endif