Move openssl.cnf out of lib/.
[openssl.git] / apps / pkcs12.c
1 /* pkcs12.c */
2 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
3  * project 1999.
4  */
5 /* ====================================================================
6  * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer. 
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58
59 #include <stdio.h>
60 #include <stdlib.h>
61 #include <string.h>
62 #include <openssl/des.h>
63 #include <openssl/pem.h>
64 #include <openssl/err.h>
65 #include <openssl/pkcs12.h>
66
67 #include "apps.h"
68 #define PROG pkcs12_main
69
70 EVP_CIPHER *enc;
71
72 #define _ITER_ 1000
73
74 #define NOKEYS          0x1
75 #define NOCERTS         0x2
76 #define INFO            0x4
77 #define CLCERTS         0x8
78 #define CACERTS         0x10
79
80 int get_cert_chain(X509 *cert, STACK **chain);
81 int dump_cert_text (BIO *out, X509 *x);
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 *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 *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 = _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")) maciter = _ITER_;
144                 else if (!strcmp (*args, "-nodes")) enc=NULL;
145                 else if (!strcmp (*args, "-inkey")) {
146                     if (args[1]) {
147                         args++; 
148                         keyname = *args;
149                     } else badarg = 1;
150                 } else if (!strcmp (*args, "-certfile")) {
151                     if (args[1]) {
152                         args++; 
153                         certfile = *args;
154                     } else badarg = 1;
155                 } else if (!strcmp (*args, "-name")) {
156                     if (args[1]) {
157                         args++; 
158                         name = *args;
159                     } else badarg = 1;
160                 } else if (!strcmp (*args, "-caname")) {
161                     if (args[1]) {
162                         args++; 
163                         if (!canames) canames = sk_new(NULL);
164                         sk_push(canames, *args);
165                     } else badarg = 1;
166                 } else if (!strcmp (*args, "-in")) {
167                     if (args[1]) {
168                         args++; 
169                         infile = *args;
170                     } else badarg = 1;
171                 } else if (!strcmp (*args, "-out")) {
172                     if (args[1]) {
173                         args++; 
174                         outfile = *args;
175                     } else badarg = 1;
176                 } else if (!strcmp (*args, "-envpass")) {
177                     if (args[1]) {
178                         args++; 
179                         if(!(cpass = getenv(*args))) {
180                                 BIO_printf(bio_err,
181                                  "Can't read environment variable %s\n", *args);
182                                 goto end;
183                         }
184                         noprompt = 1;
185                     } else badarg = 1;
186                 } else if (!strcmp (*args, "-password")) {
187                     if (args[1]) {
188                         args++; 
189                         cpass = *args;
190                         noprompt = 1;
191                     } else badarg = 1;
192                 } else badarg = 1;
193
194         } else badarg = 1;
195         args++;
196     }
197
198     if (badarg) {
199         BIO_printf (bio_err, "Usage: pkcs12 [options]\n");
200         BIO_printf (bio_err, "where options are\n");
201         BIO_printf (bio_err, "-export       output PKCS12 file\n");
202         BIO_printf (bio_err, "-chain        add certificate chain\n");
203         BIO_printf (bio_err, "-inkey file   private key if not infile\n");
204         BIO_printf (bio_err, "-certfile f   add all certs in f\n");
205         BIO_printf (bio_err, "-name \"name\"  use name as friendly name\n");
206         BIO_printf (bio_err, "-caname \"nm\"  use nm as CA friendly name (can be used more than once).\n");
207         BIO_printf (bio_err, "-in  infile   input filename\n");
208         BIO_printf (bio_err, "-out outfile  output filename\n");
209         BIO_printf (bio_err, "-noout        don't output anything, just verify.\n");
210         BIO_printf (bio_err, "-nomacver     don't verify MAC.\n");
211         BIO_printf (bio_err, "-nocerts      don't output certificates.\n");
212         BIO_printf (bio_err, "-clcerts      only output client certificates.\n");
213         BIO_printf (bio_err, "-cacerts      only output CA certificates.\n");
214         BIO_printf (bio_err, "-nokeys       don't output private keys.\n");
215         BIO_printf (bio_err, "-info         give info about PKCS#12 structure.\n");
216         BIO_printf (bio_err, "-des          encrypt private keys with DES\n");
217         BIO_printf (bio_err, "-des3         encrypt private keys with triple DES (default)\n");
218 #ifndef NO_IDEA
219         BIO_printf (bio_err, "-idea         encrypt private keys with idea\n");
220 #endif
221         BIO_printf (bio_err, "-nodes        don't encrypt private keys\n");
222         BIO_printf (bio_err, "-noiter       don't use encryption iteration\n");
223         BIO_printf (bio_err, "-maciter      use MAC iteration\n");
224         BIO_printf (bio_err, "-twopass      separate MAC, encryption passwords\n");
225         BIO_printf (bio_err, "-descert      encrypt PKCS#12 certificates with triple DES (default RC2-40)\n");
226         BIO_printf (bio_err, "-keyex        set MS key exchange type\n");
227         BIO_printf (bio_err, "-keysig       set MS key signature type\n");
228         BIO_printf (bio_err, "-password p   set import/export password (NOT RECOMMENDED)\n");
229         BIO_printf (bio_err, "-envpass p    set import/export password from environment\n");
230         goto end;
231     }
232
233     if(cpass) mpass = cpass;
234     else {
235         cpass = pass;
236         mpass = macpass;
237     }
238
239     ERR_load_crypto_strings();
240
241     in = BIO_new (BIO_s_file());
242     out = BIO_new (BIO_s_file());
243
244     if (!infile) BIO_set_fp (in, stdin, BIO_NOCLOSE);
245     else {
246         if (BIO_read_filename (in, infile) <= 0) {
247             perror (infile);
248             goto end;
249         }
250     }
251
252    if (certfile) {
253         certsin = BIO_new (BIO_s_file());
254         if (BIO_read_filename (certsin, certfile) <= 0) {
255             perror (certfile);
256             goto end;
257         }
258     }
259
260     if (keyname) {
261         inkey = BIO_new (BIO_s_file());
262         if (BIO_read_filename (inkey, keyname) <= 0) {
263             perror (keyname);
264             goto end;
265         }
266      }
267
268     if (!outfile) BIO_set_fp (out, stdout, BIO_NOCLOSE);
269     else {
270         if (BIO_write_filename (out, outfile) <= 0) {
271             perror (outfile);
272             goto end;
273         }
274     }
275     if (twopass) {
276         if(EVP_read_pw_string (macpass, 50, "Enter MAC Password:", export_cert)) {
277             BIO_printf (bio_err, "Can't read Password\n");
278             goto end;
279         }
280     }
281
282 if (export_cert) {
283         EVP_PKEY *key;
284         STACK *bags, *safes;
285         PKCS12_SAFEBAG *bag;
286         PKCS8_PRIV_KEY_INFO *p8;
287         PKCS7 *authsafe;
288         X509 *cert, *ucert = NULL;
289         STACK *certs;
290         char *catmp;
291         int i, pmatch = 0;
292         unsigned char keyid[EVP_MAX_MD_SIZE];
293         unsigned int keyidlen;
294         /* Get private key so we can match it to a certificate */
295         key = PEM_read_bio_PrivateKey(inkey ? inkey : in, NULL, NULL);
296         if (!inkey) 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_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         bags = sk_new (NULL);
313
314         /* Add any more certificates asked for */
315         if (certsin) {
316                 if(!cert_load(certsin, certs)) {
317                         BIO_printf(bio_err, "Error loading certificates from certfile\n");
318                         ERR_print_errors(bio_err);
319                         goto end;
320                 }
321                 BIO_free(certsin);
322         }
323
324         /* Find certificate (if any) matching private key */
325
326         for(i = 0; i < sk_num(certs); i++) {
327                         cert = (X509 *)sk_value(certs, i);
328                         if(X509_check_private_key(cert, key)) {
329                                 ucert = cert;
330                                 break;
331                         }
332         }
333
334         if(!ucert) {
335                 BIO_printf(bio_err, "No certificate matches private key\n");
336                 goto end;
337         }
338
339         /* If chaining get chain from user cert */
340         if (chain) {
341                 int vret;
342                 STACK *chain2;
343                         
344                 vret = get_cert_chain (ucert, &chain2);
345                 if (vret) {
346                         BIO_printf (bio_err, "Error %s getting chain.\n",
347                                         X509_verify_cert_error_string(vret));
348                         goto end;
349                 }
350                 /* Exclude verified certificate */
351                 for (i = 1; i < sk_num (chain2) ; i++) 
352                                  sk_push(certs, sk_value (chain2, i));
353                 sk_free(chain2);
354                         
355         }
356
357         /* We now have loads of certificates: include them all */
358         for(i = 0; i < sk_num(certs); i++) {
359                 cert = (X509 *)sk_value(certs, i);
360                 bag = M_PKCS12_x5092certbag(cert);
361                 /* If it matches private key mark it */
362                 if(cert == ucert) {
363                         if(name) PKCS12_add_friendlyname(bag, name, -1);
364                         X509_digest(cert, EVP_sha1(), keyid, &keyidlen);
365                         PKCS12_add_localkeyid(bag, keyid, keyidlen);
366                         pmatch = 1;
367                 } else if((catmp = sk_shift(canames))) 
368                                 PKCS12_add_friendlyname(bag, catmp, -1);
369                 sk_push(bags, (char *)bag);
370         }
371
372         if (canames) sk_free(canames);
373
374         if(!noprompt &&
375                 EVP_read_pw_string(pass, 50, "Enter Export Password:", 1)) {
376             BIO_printf (bio_err, "Can't read Password\n");
377             goto end;
378         }
379         if (!twopass) strcpy(macpass, pass);
380         /* Turn certbags into encrypted authsafe */
381         authsafe = PKCS12_pack_p7encdata (cert_pbe, cpass, -1, NULL, 0,
382                                                                  iter, bags);
383         sk_pop_free(bags, PKCS12_SAFEBAG_free);
384
385         if (!authsafe) {
386                 ERR_print_errors (bio_err);
387                 goto end;
388         }
389
390         safes = sk_new (NULL);
391         sk_push (safes, (char *)authsafe);
392
393         /* Make a shrouded key bag */
394         p8 = EVP_PKEY2PKCS8 (key);
395         EVP_PKEY_free(key);
396         if(keytype) PKCS8_add_keyusage(p8, keytype);
397         bag = PKCS12_MAKE_SHKEYBAG (NID_pbe_WithSHA1And3_Key_TripleDES_CBC,
398                         cpass, -1, NULL, 0, iter, p8);
399         PKCS8_PRIV_KEY_INFO_free(p8);
400         if (name) PKCS12_add_friendlyname (bag, name, -1);
401         PKCS12_add_localkeyid (bag, keyid, keyidlen);
402         bags = sk_new(NULL);
403         sk_push (bags, (char *)bag);
404         /* Turn it into unencrypted safe bag */
405         authsafe = PKCS12_pack_p7data (bags);
406         sk_pop_free(bags, PKCS12_SAFEBAG_free);
407         sk_push (safes, (char *)authsafe);
408
409         p12 = PKCS12_init (NID_pkcs7_data);
410
411         M_PKCS12_pack_authsafes (p12, safes);
412
413         sk_pop_free(safes, PKCS7_free);
414
415         PKCS12_set_mac (p12, mpass, -1, NULL, 0, maciter, NULL);
416
417         i2d_PKCS12_bio (out, p12);
418
419         PKCS12_free(p12);
420
421         ret = 0;
422         goto end;
423         
424 }
425
426     if (!(p12 = d2i_PKCS12_bio (in, NULL))) {
427         ERR_print_errors(bio_err);
428         goto end;
429     }
430
431     if(!noprompt && EVP_read_pw_string(pass, 50, "Enter Import Password:", 0)) {
432         BIO_printf (bio_err, "Can't read Password\n");
433         goto end;
434     }
435
436     if (!twopass) strcpy(macpass, pass);
437
438     if (options & INFO) BIO_printf (bio_err, "MAC Iteration %ld\n", p12->mac->iter ? ASN1_INTEGER_get (p12->mac->iter) : 1);
439     if(macver) {
440         if (!PKCS12_verify_mac (p12, mpass, -1)) {
441             BIO_printf (bio_err, "Mac verify errror: invalid password?\n");
442             ERR_print_errors (bio_err);
443             goto end;
444         } else BIO_printf (bio_err, "MAC verified OK\n");
445     }
446
447     if (!dump_certs_keys_p12 (out, p12, cpass, -1, options)) {
448         BIO_printf(bio_err, "Error outputting keys and certificates\n");
449         ERR_print_errors (bio_err);
450         goto end;
451     }
452     PKCS12_free(p12);
453     ret = 0;
454     end:
455     EXIT(ret);
456 }
457
458 int dump_cert_text (BIO *out, X509 *x)
459 {
460         char buf[256];
461         X509_NAME_oneline(X509_get_subject_name(x),buf,256);
462         BIO_puts(out,"subject=");
463         BIO_puts(out,buf);
464
465         X509_NAME_oneline(X509_get_issuer_name(x),buf,256);
466         BIO_puts(out,"\nissuer= ");
467         BIO_puts(out,buf);
468         BIO_puts(out,"\n");
469         return 0;
470 }
471
472 int dump_certs_keys_p12 (BIO *out, PKCS12 *p12, char *pass,
473              int passlen, int options)
474 {
475         STACK *asafes, *bags;
476         int i, bagnid;
477         PKCS7 *p7;
478         if (!( asafes = M_PKCS12_unpack_authsafes (p12))) return 0;
479         for (i = 0; i < sk_num (asafes); i++) {
480                 p7 = (PKCS7 *) sk_value (asafes, i);
481                 bagnid = OBJ_obj2nid (p7->type);
482                 if (bagnid == NID_pkcs7_data) {
483                         bags = M_PKCS12_unpack_p7data (p7);
484                         if (options & INFO) BIO_printf (bio_err, "PKCS7 Data\n");
485                 } else if (bagnid == NID_pkcs7_encrypted) {
486                         if (options & INFO) {
487                                 BIO_printf (bio_err, "PKCS7 Encrypted data: ");
488                                 alg_print (bio_err, 
489                                         p7->d.encrypted->enc_data->algorithm);
490                         }
491                         bags = M_PKCS12_unpack_p7encdata (p7, pass, passlen);
492                 } else continue;
493                 if (!bags) return 0;
494                 if (!dump_certs_pkeys_bags (out, bags, pass, passlen, 
495                                                          options)) {
496                         sk_pop_free (bags, PKCS12_SAFEBAG_free);
497                         return 0;
498                 }
499                 sk_pop_free (bags, PKCS12_SAFEBAG_free);
500         }
501         sk_pop_free (asafes, PKCS7_free);
502         return 1;
503 }
504
505 int dump_certs_pkeys_bags (BIO *out, STACK *bags, char *pass,
506              int passlen, int options)
507 {
508         int i;
509         for (i = 0; i < sk_num (bags); i++) {
510                 if (!dump_certs_pkeys_bag (out,
511                          (PKCS12_SAFEBAG *)sk_value (bags, i), pass, passlen,
512                                                         options)) return 0;
513         }
514         return 1;
515 }
516
517 int dump_certs_pkeys_bag (BIO *out, PKCS12_SAFEBAG *bag, char *pass,
518              int passlen, int options)
519 {
520         EVP_PKEY *pkey;
521         PKCS8_PRIV_KEY_INFO *p8;
522         X509 *x509;
523         
524         switch (M_PKCS12_bag_type(bag))
525         {
526         case NID_keyBag:
527                 if (options & INFO) BIO_printf (bio_err, "Key bag\n");
528                 if (options & NOKEYS) return 1;
529                 print_attribs (out, bag->attrib, "Bag Attributes");
530                 p8 = bag->value.keybag;
531                 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
532                 print_attribs (out, p8->attributes, "Key Attributes");
533                 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL);
534                 EVP_PKEY_free(pkey);
535         break;
536
537         case NID_pkcs8ShroudedKeyBag:
538                 if (options & INFO) {
539                         BIO_printf (bio_err, "Shrouded Keybag: ");
540                         alg_print (bio_err, bag->value.shkeybag->algor);
541                 }
542                 if (options & NOKEYS) return 1;
543                 print_attribs (out, bag->attrib, "Bag Attributes");
544                 if (!(p8 = M_PKCS12_decrypt_skey (bag, pass, passlen)))
545                                 return 0;
546                 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
547                 print_attribs (out, p8->attributes, "Key Attributes");
548                 PKCS8_PRIV_KEY_INFO_free(p8);
549                 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL);
550                 EVP_PKEY_free(pkey);
551         break;
552
553         case NID_certBag:
554                 if (options & INFO) BIO_printf (bio_err, "Certificate bag\n");
555                 if (options & NOCERTS) return 1;
556                 if (PKCS12_get_attr(bag, NID_localKeyID)) {
557                         if (options & CACERTS) return 1;
558                 } else if (options & CLCERTS) return 1;
559                 print_attribs (out, bag->attrib, "Bag Attributes");
560                 if (M_PKCS12_cert_bag_type(bag) != NID_x509Certificate )
561                                                                  return 1;
562                 if (!(x509 = M_PKCS12_certbag2x509(bag))) return 0;
563                 dump_cert_text (out, x509);
564                 PEM_write_bio_X509 (out, x509);
565                 X509_free(x509);
566         break;
567
568         case NID_safeContentsBag:
569                 if (options & INFO) BIO_printf (bio_err, "Safe Contents bag\n");
570                 print_attribs (out, bag->attrib, "Bag Attributes");
571                 return dump_certs_pkeys_bags (out, bag->value.safes, pass,
572                                                             passlen, options);
573                                         
574         default:
575                 BIO_printf (bio_err, "Warning unsupported bag type: ");
576                 i2a_ASN1_OBJECT (bio_err, bag->type);
577                 BIO_printf (bio_err, "\n");
578                 return 1;
579         break;
580         }
581         return 1;
582 }
583
584 /* Given a single certificate return a verified chain or NULL if error */
585
586 /* Hope this is OK .... */
587
588 int get_cert_chain (X509 *cert, STACK **chain)
589 {
590         X509_STORE *store;
591         X509_STORE_CTX store_ctx;
592         STACK *chn;
593         int i;
594         X509 *x;
595         store = X509_STORE_new ();
596         X509_STORE_set_default_paths (store);
597         X509_STORE_CTX_init(&store_ctx, store, cert, NULL);
598         if (X509_verify_cert(&store_ctx) <= 0) {
599                 i = X509_STORE_CTX_get_error (&store_ctx);
600                 goto err;
601         }
602         chn =  sk_dup(X509_STORE_CTX_get_chain (&store_ctx));
603         for (i = 0; i < sk_num(chn); i++) {
604                 x = (X509 *)sk_value(chn, i);
605                 CRYPTO_add(&x->references,1,CRYPTO_LOCK_X509);
606         }
607         i = 0;
608         *chain = chn;
609 err:
610         X509_STORE_CTX_cleanup(&store_ctx);
611         X509_STORE_free(store);
612         
613         return i;
614 }       
615
616 int alg_print (BIO *x, X509_ALGOR *alg)
617 {
618         PBEPARAM *pbe;
619         unsigned char *p;
620         p = alg->parameter->value.sequence->data;
621         pbe = d2i_PBEPARAM (NULL, &p, alg->parameter->value.sequence->length);
622         BIO_printf (bio_err, "%s, Iteration %d\n", 
623         OBJ_nid2ln(OBJ_obj2nid(alg->algorithm)), ASN1_INTEGER_get(pbe->iter));
624         PBEPARAM_free (pbe);
625         return 0;
626 }
627
628 /* Load all certificates from a given file */
629
630 int cert_load(BIO *in, STACK *sk)
631 {
632         int ret;
633         X509 *cert;
634         ret = 0;
635         while((cert = PEM_read_bio_X509(in, NULL, NULL))) {
636                 ret = 1;
637                 sk_push(sk, (char *)cert);
638         }
639         if(ret) ERR_clear_error();
640         return ret;
641 }
642
643 /* Generalised attribute print: handle PKCS#8 and bag attributes */
644
645 int print_attribs (BIO *out, STACK *attrlst, char *name)
646 {
647         X509_ATTRIBUTE *attr;
648         ASN1_TYPE *av;
649         char *value;
650         int i, attr_nid;
651         if(!attrlst) {
652                 BIO_printf(out, "%s: <No Attributes>\n", name);
653                 return 1;
654         }
655         if(!sk_num(attrlst)) {
656                 BIO_printf(out, "%s: <Empty Attributes>\n", name);
657                 return 1;
658         }
659         BIO_printf(out, "%s\n", name);
660         for(i = 0; i < sk_num(attrlst); i++) {
661                 attr = (X509_ATTRIBUTE *) sk_value(attrlst, i);
662                 attr_nid = OBJ_obj2nid(attr->object);
663                 BIO_printf(out, "    ");
664                 if(attr_nid == NID_undef) {
665                         i2a_ASN1_OBJECT (out, attr->object);
666                         BIO_printf(out, ": ");
667                 } else BIO_printf(out, "%s: ", OBJ_nid2ln(attr_nid));
668
669                 if(sk_ASN1_TYPE_num(attr->value.set)) {
670                         av = sk_ASN1_TYPE_value(attr->value.set, 0);
671                         switch(av->type) {
672                                 case V_ASN1_BMPSTRING:
673                                 value = uni2asc(av->value.bmpstring->data,
674                                                av->value.bmpstring->length);
675                                 BIO_printf(out, "%s\n", value);
676                                 Free(value);
677                                 break;
678
679                                 case V_ASN1_OCTET_STRING:
680                                 hex_prin(out, av->value.bit_string->data,
681                                         av->value.bit_string->length);
682                                 BIO_printf(out, "\n");  
683                                 break;
684
685                                 case V_ASN1_BIT_STRING:
686                                 hex_prin(out, av->value.octet_string->data,
687                                         av->value.octet_string->length);
688                                 BIO_printf(out, "\n");  
689                                 break;
690
691                                 default:
692                                         BIO_printf(out, "<Unsupported tag %d>\n", av->type);
693                                 break;
694                         }
695                 } else BIO_printf(out, "<No Values>\n");
696         }
697         return 1;
698 }
699
700 void hex_prin(BIO *out, unsigned char *buf, int len)
701 {
702         int i;
703         for (i = 0; i < len; i++) BIO_printf (out, "%02X ", buf[i]);
704 }