Update contrib.
2 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
5 /* ====================================================================
6 * Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
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
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/)"
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.
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.
34 * 6. Redistributions of any form whatsoever must retain the following
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
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 * ====================================================================
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).
59 #include <openssl/opensslconf.h>
60 #if !defined(OPENSSL_NO_DES) && !defined(OPENSSL_NO_SHA1)
66 #include <openssl/crypto.h>
67 #include <openssl/err.h>
68 #include <openssl/pem.h>
69 #include <openssl/pkcs12.h>
71 #define PROG pkcs12_main
73 const EVP_CIPHER *enc;
82 int get_cert_chain (X509 *cert, X509_STORE *store, STACK_OF(X509) **chain);
83 int dump_certs_keys_p12(BIO *out, PKCS12 *p12, char *pass, int passlen, int options, char *pempass);
84 int dump_certs_pkeys_bags(BIO *out, STACK_OF(PKCS12_SAFEBAG) *bags, char *pass,
85 int passlen, int options, char *pempass);
86 int dump_certs_pkeys_bag(BIO *out, PKCS12_SAFEBAG *bags, char *pass, int passlen, int options, char *pempass);
87 int print_attribs(BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst,const char *name);
88 void hex_prin(BIO *out, unsigned char *buf, int len);
89 int alg_print(BIO *x, X509_ALGOR *alg);
90 int cert_load(BIO *in, STACK_OF(X509) *sk);
93 int MAIN(int, char **);
95 int MAIN(int argc, char **argv)
98 char *infile=NULL, *outfile=NULL, *keyname = NULL;
100 BIO *in=NULL, *out = NULL;
103 char *csp_name = NULL;
105 char pass[50], macpass[50];
110 int iter = PKCS12_DEFAULT_ITER;
111 int maciter = PKCS12_DEFAULT_ITER;
114 int cert_pbe = NID_pbe_WithSHA1And40BitRC2_CBC;
115 int key_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
119 STACK *canames = NULL;
120 char *cpass = NULL, *mpass = NULL;
121 char *passargin = NULL, *passargout = NULL, *passarg = NULL;
122 char *passin = NULL, *passout = NULL;
124 char *CApath = NULL, *CAfile = NULL;
125 #ifndef OPENSSL_NO_ENGINE
131 enc = EVP_des_ede3_cbc();
132 if (bio_err == NULL )
133 bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
134 if (!load_config(bio_err, NULL))
141 if (*args[0] == '-') {
142 if (!strcmp (*args, "-nokeys")) options |= NOKEYS;
143 else if (!strcmp (*args, "-keyex")) keytype = KEY_EX;
144 else if (!strcmp (*args, "-keysig")) keytype = KEY_SIG;
145 else if (!strcmp (*args, "-nocerts")) options |= NOCERTS;
146 else if (!strcmp (*args, "-clcerts")) options |= CLCERTS;
147 else if (!strcmp (*args, "-cacerts")) options |= CACERTS;
148 else if (!strcmp (*args, "-noout")) options |= (NOKEYS|NOCERTS);
149 else if (!strcmp (*args, "-info")) options |= INFO;
150 else if (!strcmp (*args, "-chain")) chain = 1;
151 else if (!strcmp (*args, "-twopass")) twopass = 1;
152 else if (!strcmp (*args, "-nomacver")) macver = 0;
153 else if (!strcmp (*args, "-descert"))
154 cert_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
155 else if (!strcmp (*args, "-export")) export_cert = 1;
156 else if (!strcmp (*args, "-des")) enc=EVP_des_cbc();
157 else if (!strcmp (*args, "-des3")) enc = EVP_des_ede3_cbc();
158 #ifndef OPENSSL_NO_IDEA
159 else if (!strcmp (*args, "-idea")) enc=EVP_idea_cbc();
161 else if (!strcmp (*args, "-des3")) enc = EVP_des_ede3_cbc();
162 #ifndef OPENSSL_NO_AES
163 else if (!strcmp(*args,"-aes128")) enc=EVP_aes_128_cbc();
164 else if (!strcmp(*args,"-aes192")) enc=EVP_aes_192_cbc();
165 else if (!strcmp(*args,"-aes256")) enc=EVP_aes_256_cbc();
167 else if (!strcmp (*args, "-noiter")) iter = 1;
168 else if (!strcmp (*args, "-maciter"))
169 maciter = PKCS12_DEFAULT_ITER;
170 else if (!strcmp (*args, "-nomaciter"))
172 else if (!strcmp (*args, "-nomac"))
174 else if (!strcmp (*args, "-nodes")) enc=NULL;
175 else if (!strcmp (*args, "-certpbe")) {
178 if (!strcmp(*args, "NONE"))
181 cert_pbe=OBJ_txt2nid(*args);
182 if(cert_pbe == NID_undef) {
184 "Unknown PBE algorithm %s\n", *args);
188 } else if (!strcmp (*args, "-keypbe")) {
191 if (!strcmp(*args, "NONE"))
194 key_pbe=OBJ_txt2nid(*args);
195 if(key_pbe == NID_undef) {
197 "Unknown PBE algorithm %s\n", *args);
201 } else if (!strcmp (*args, "-rand")) {
206 } else if (!strcmp (*args, "-inkey")) {
211 } else if (!strcmp (*args, "-certfile")) {
216 } else if (!strcmp (*args, "-name")) {
221 } else if (!strcmp (*args, "-CSP")) {
226 } else if (!strcmp (*args, "-caname")) {
229 if (!canames) canames = sk_new_null();
230 sk_push(canames, *args);
232 } else if (!strcmp (*args, "-in")) {
237 } else if (!strcmp (*args, "-out")) {
242 } else if (!strcmp(*args,"-passin")) {
247 } else if (!strcmp(*args,"-passout")) {
252 } else if (!strcmp (*args, "-password")) {
258 } else if (!strcmp(*args,"-CApath")) {
263 } else if (!strcmp(*args,"-CAfile")) {
268 #ifndef OPENSSL_NO_ENGINE
269 } else if (!strcmp(*args,"-engine")) {
282 BIO_printf (bio_err, "Usage: pkcs12 [options]\n");
283 BIO_printf (bio_err, "where options are\n");
284 BIO_printf (bio_err, "-export output PKCS12 file\n");
285 BIO_printf (bio_err, "-chain add certificate chain\n");
286 BIO_printf (bio_err, "-inkey file private key if not infile\n");
287 BIO_printf (bio_err, "-certfile f add all certs in f\n");
288 BIO_printf (bio_err, "-CApath arg - PEM format directory of CA's\n");
289 BIO_printf (bio_err, "-CAfile arg - PEM format file of CA's\n");
290 BIO_printf (bio_err, "-name \"name\" use name as friendly name\n");
291 BIO_printf (bio_err, "-caname \"nm\" use nm as CA friendly name (can be used more than once).\n");
292 BIO_printf (bio_err, "-in infile input filename\n");
293 BIO_printf (bio_err, "-out outfile output filename\n");
294 BIO_printf (bio_err, "-noout don't output anything, just verify.\n");
295 BIO_printf (bio_err, "-nomacver don't verify MAC.\n");
296 BIO_printf (bio_err, "-nocerts don't output certificates.\n");
297 BIO_printf (bio_err, "-clcerts only output client certificates.\n");
298 BIO_printf (bio_err, "-cacerts only output CA certificates.\n");
299 BIO_printf (bio_err, "-nokeys don't output private keys.\n");
300 BIO_printf (bio_err, "-info give info about PKCS#12 structure.\n");
301 BIO_printf (bio_err, "-des encrypt private keys with DES\n");
302 BIO_printf (bio_err, "-des3 encrypt private keys with triple DES (default)\n");
303 #ifndef OPENSSL_NO_IDEA
304 BIO_printf (bio_err, "-idea encrypt private keys with idea\n");
306 #ifndef OPENSSL_NO_AES
307 BIO_printf (bio_err, "-aes128, -aes192, -aes256\n");
308 BIO_printf (bio_err, " encrypt PEM output with cbc aes\n");
310 BIO_printf (bio_err, "-nodes don't encrypt private keys\n");
311 BIO_printf (bio_err, "-noiter don't use encryption iteration\n");
312 BIO_printf (bio_err, "-maciter use MAC iteration\n");
313 BIO_printf (bio_err, "-twopass separate MAC, encryption passwords\n");
314 BIO_printf (bio_err, "-descert encrypt PKCS#12 certificates with triple DES (default RC2-40)\n");
315 BIO_printf (bio_err, "-certpbe alg specify certificate PBE algorithm (default RC2-40)\n");
316 BIO_printf (bio_err, "-keypbe alg specify private key PBE algorithm (default 3DES)\n");
317 BIO_printf (bio_err, "-keyex set MS key exchange type\n");
318 BIO_printf (bio_err, "-keysig set MS key signature type\n");
319 BIO_printf (bio_err, "-password p set import/export password source\n");
320 BIO_printf (bio_err, "-passin p input file pass phrase source\n");
321 BIO_printf (bio_err, "-passout p output file pass phrase source\n");
322 #ifndef OPENSSL_NO_ENGINE
323 BIO_printf (bio_err, "-engine e use engine e, possibly a hardware device.\n");
325 BIO_printf(bio_err, "-rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
326 BIO_printf(bio_err, " load the file (or the files in the directory) into\n");
327 BIO_printf(bio_err, " the random number generator\n");
331 #ifndef OPENSSL_NO_ENGINE
332 e = setup_engine(bio_err, engine, 0);
336 if(export_cert) passargout = passarg;
337 else passargin = passarg;
340 if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) {
341 BIO_printf(bio_err, "Error getting passwords\n");
346 if(export_cert) cpass = passout;
358 if(export_cert || inrand) {
359 app_RAND_load_file(NULL, bio_err, (inrand != NULL));
361 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
362 app_RAND_load_files(inrand));
364 ERR_load_crypto_strings();
367 CRYPTO_push_info("read files");
369 if (!infile) in = BIO_new_fp(stdin, BIO_NOCLOSE);
370 else in = BIO_new_file(infile, "rb");
372 BIO_printf(bio_err, "Error opening input file %s\n",
373 infile ? infile : "<stdin>");
380 CRYPTO_push_info("write files");
384 out = BIO_new_fp(stdout, BIO_NOCLOSE);
386 #ifdef OPENSSL_SYS_VMS
388 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
389 out = BIO_push(tmpbio, out);
392 } else out = BIO_new_file(outfile, "wb");
394 BIO_printf(bio_err, "Error opening output file %s\n",
395 outfile ? outfile : "<stdout>");
401 CRYPTO_push_info("read MAC password");
403 if(EVP_read_pw_string (macpass, sizeof macpass, "Enter MAC Password:", export_cert))
405 BIO_printf (bio_err, "Can't read Password\n");
414 EVP_PKEY *key = NULL;
415 X509 *ucert = NULL, *x = NULL;
416 STACK_OF(X509) *certs=NULL;
417 unsigned char *catmp = NULL;
420 if ((options & (NOCERTS|NOKEYS)) == (NOCERTS|NOKEYS))
422 BIO_printf(bio_err, "Nothing to do!\n");
426 if (options & NOCERTS)
430 CRYPTO_push_info("process -export_cert");
431 CRYPTO_push_info("reading private key");
433 if (!(options & NOKEYS))
435 key = load_key(bio_err, keyname ? keyname : infile,
436 FORMAT_PEM, 1, passin, e, "private key");
443 CRYPTO_push_info("reading certs from input");
446 /* Load in all certs in input file */
447 if(!(options & NOCERTS))
449 certs = load_certs(bio_err, infile, FORMAT_PEM, NULL, e,
456 /* Look for matching private key */
457 for(i = 0; i < sk_X509_num(certs); i++)
459 x = sk_X509_value(certs, i);
460 if(X509_check_private_key(x, key))
463 /* Zero keyid and alias */
464 X509_keyid_set1(ucert, NULL, 0);
465 X509_alias_set1(ucert, NULL, 0);
466 /* Remove from list */
467 (void)sk_X509_delete(certs, i);
473 BIO_printf(bio_err, "No certificate matches private key\n");
482 CRYPTO_push_info("reading certs from input 2");
485 /* Add any more certificates asked for */
488 STACK_OF(X509) *morecerts=NULL;
489 if(!(morecerts = load_certs(bio_err, certfile, FORMAT_PEM,
491 "certificates from certfile")))
493 while(sk_X509_num(morecerts) > 0)
494 sk_X509_push(certs, sk_X509_shift(morecerts));
495 sk_X509_free(morecerts);
500 CRYPTO_push_info("reading certs from certfile");
505 CRYPTO_push_info("building chain");
508 /* If chaining get chain from user cert */
511 STACK_OF(X509) *chain2;
512 X509_STORE *store = X509_STORE_new();
515 BIO_printf (bio_err, "Memory allocation error\n");
518 if (!X509_STORE_load_locations(store, CAfile, CApath))
519 X509_STORE_set_default_paths (store);
521 vret = get_cert_chain (ucert, store, &chain2);
522 X509_STORE_free(store);
525 /* Exclude verified certificate */
526 for (i = 1; i < sk_X509_num (chain2) ; i++)
527 sk_X509_push(certs, sk_X509_value (chain2, i));
528 /* Free first certificate */
529 X509_free(sk_X509_value(chain2, 0));
530 sk_X509_free(chain2);
533 BIO_printf (bio_err, "Error %s getting chain.\n",
534 X509_verify_cert_error_string(vret));
536 ERR_print_errors(bio_err);
541 /* Add any CA names */
543 for (i = 0; i < sk_num(canames); i++)
545 catmp = (unsigned char *)sk_value(canames, i);
546 X509_alias_set1(sk_X509_value(certs, i), catmp, -1);
550 EVP_PKEY_add1_attr_by_NID(key, NID_ms_csp_name,
551 MBSTRING_ASC, (unsigned char *)csp_name, -1);
556 CRYPTO_push_info("reading password");
560 EVP_read_pw_string(pass, sizeof pass, "Enter Export Password:", 1))
562 BIO_printf (bio_err, "Can't read Password\n");
565 if (!twopass) BUF_strlcpy(macpass, pass, sizeof macpass);
569 CRYPTO_push_info("creating PKCS#12 structure");
572 p12 = PKCS12_create(cpass, name, key, ucert, certs,
573 key_pbe, cert_pbe, iter, -1, keytype);
577 ERR_print_errors (bio_err);
582 PKCS12_set_mac(p12, mpass, -1, NULL, 0, maciter, NULL);
586 CRYPTO_push_info("writing pkcs12");
589 i2d_PKCS12_bio(out, p12);
597 CRYPTO_push_info("process -export_cert: freeing");
600 if (key) EVP_PKEY_free(key);
601 if (certs) sk_X509_pop_free(certs, X509_free);
602 if (ucert) X509_free(ucert);
611 if (!(p12 = d2i_PKCS12_bio (in, NULL))) {
612 ERR_print_errors(bio_err);
617 CRYPTO_push_info("read import password");
619 if(!noprompt && EVP_read_pw_string(pass, sizeof pass, "Enter Import Password:", 0)) {
620 BIO_printf (bio_err, "Can't read Password\n");
627 if (!twopass) BUF_strlcpy(macpass, pass, sizeof macpass);
629 if (options & INFO) BIO_printf (bio_err, "MAC Iteration %ld\n", p12->mac->iter ? ASN1_INTEGER_get (p12->mac->iter) : 1);
632 CRYPTO_push_info("verify MAC");
634 /* If we enter empty password try no password first */
635 if(!mpass[0] && PKCS12_verify_mac(p12, NULL, 0)) {
636 /* If mac and crypto pass the same set it to NULL too */
637 if(!twopass) cpass = NULL;
638 } else if (!PKCS12_verify_mac(p12, mpass, -1)) {
639 BIO_printf (bio_err, "Mac verify error: invalid password?\n");
640 ERR_print_errors (bio_err);
643 BIO_printf (bio_err, "MAC verified OK\n");
650 CRYPTO_push_info("output keys and certificates");
652 if (!dump_certs_keys_p12 (out, p12, cpass, -1, options, passout)) {
653 BIO_printf(bio_err, "Error outputting keys and certificates\n");
654 ERR_print_errors (bio_err);
662 if (p12) PKCS12_free(p12);
663 if(export_cert || inrand) app_RAND_write_file(NULL, bio_err);
665 CRYPTO_remove_all_info();
669 if (canames) sk_free(canames);
670 if(passin) OPENSSL_free(passin);
671 if(passout) OPENSSL_free(passout);
676 int dump_certs_keys_p12 (BIO *out, PKCS12 *p12, char *pass,
677 int passlen, int options, char *pempass)
679 STACK_OF(PKCS7) *asafes = NULL;
680 STACK_OF(PKCS12_SAFEBAG) *bags;
685 if (!( asafes = PKCS12_unpack_authsafes(p12))) return 0;
686 for (i = 0; i < sk_PKCS7_num (asafes); i++) {
687 p7 = sk_PKCS7_value (asafes, i);
688 bagnid = OBJ_obj2nid (p7->type);
689 if (bagnid == NID_pkcs7_data) {
690 bags = PKCS12_unpack_p7data(p7);
691 if (options & INFO) BIO_printf (bio_err, "PKCS7 Data\n");
692 } else if (bagnid == NID_pkcs7_encrypted) {
693 if (options & INFO) {
694 BIO_printf(bio_err, "PKCS7 Encrypted data: ");
696 p7->d.encrypted->enc_data->algorithm);
698 bags = PKCS12_unpack_p7encdata(p7, pass, passlen);
701 if (!dump_certs_pkeys_bags (out, bags, pass, passlen,
703 sk_PKCS12_SAFEBAG_pop_free (bags, PKCS12_SAFEBAG_free);
706 sk_PKCS12_SAFEBAG_pop_free (bags, PKCS12_SAFEBAG_free);
714 sk_PKCS7_pop_free (asafes, PKCS7_free);
718 int dump_certs_pkeys_bags (BIO *out, STACK_OF(PKCS12_SAFEBAG) *bags,
719 char *pass, int passlen, int options, char *pempass)
722 for (i = 0; i < sk_PKCS12_SAFEBAG_num (bags); i++) {
723 if (!dump_certs_pkeys_bag (out,
724 sk_PKCS12_SAFEBAG_value (bags, i),
732 int dump_certs_pkeys_bag (BIO *out, PKCS12_SAFEBAG *bag, char *pass,
733 int passlen, int options, char *pempass)
736 PKCS8_PRIV_KEY_INFO *p8;
739 switch (M_PKCS12_bag_type(bag))
742 if (options & INFO) BIO_printf (bio_err, "Key bag\n");
743 if (options & NOKEYS) return 1;
744 print_attribs (out, bag->attrib, "Bag Attributes");
745 p8 = bag->value.keybag;
746 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
747 print_attribs (out, p8->attributes, "Key Attributes");
748 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, pempass);
752 case NID_pkcs8ShroudedKeyBag:
753 if (options & INFO) {
754 BIO_printf (bio_err, "Shrouded Keybag: ");
755 alg_print (bio_err, bag->value.shkeybag->algor);
757 if (options & NOKEYS) return 1;
758 print_attribs (out, bag->attrib, "Bag Attributes");
759 if (!(p8 = PKCS12_decrypt_skey(bag, pass, passlen)))
761 if (!(pkey = EVP_PKCS82PKEY (p8))) {
762 PKCS8_PRIV_KEY_INFO_free(p8);
765 print_attribs (out, p8->attributes, "Key Attributes");
766 PKCS8_PRIV_KEY_INFO_free(p8);
767 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, pempass);
772 if (options & INFO) BIO_printf (bio_err, "Certificate bag\n");
773 if (options & NOCERTS) return 1;
774 if (PKCS12_get_attr(bag, NID_localKeyID)) {
775 if (options & CACERTS) return 1;
776 } else if (options & CLCERTS) return 1;
777 print_attribs (out, bag->attrib, "Bag Attributes");
778 if (M_PKCS12_cert_bag_type(bag) != NID_x509Certificate )
780 if (!(x509 = PKCS12_certbag2x509(bag))) return 0;
781 dump_cert_text (out, x509);
782 PEM_write_bio_X509 (out, x509);
786 case NID_safeContentsBag:
787 if (options & INFO) BIO_printf (bio_err, "Safe Contents bag\n");
788 print_attribs (out, bag->attrib, "Bag Attributes");
789 return dump_certs_pkeys_bags (out, bag->value.safes, pass,
790 passlen, options, pempass);
793 BIO_printf (bio_err, "Warning unsupported bag type: ");
794 i2a_ASN1_OBJECT (bio_err, bag->type);
795 BIO_printf (bio_err, "\n");
802 /* Given a single certificate return a verified chain or NULL if error */
804 /* Hope this is OK .... */
806 int get_cert_chain (X509 *cert, X509_STORE *store, STACK_OF(X509) **chain)
808 X509_STORE_CTX store_ctx;
812 /* FIXME: Should really check the return status of X509_STORE_CTX_init
813 * for an error, but how that fits into the return value of this
814 * function is less obvious. */
815 X509_STORE_CTX_init(&store_ctx, store, cert, NULL);
816 if (X509_verify_cert(&store_ctx) <= 0) {
817 i = X509_STORE_CTX_get_error (&store_ctx);
819 /* avoid returning 0 if X509_verify_cert() did not
820 * set an appropriate error value in the context */
825 chn = X509_STORE_CTX_get1_chain(&store_ctx);
827 X509_STORE_CTX_cleanup(&store_ctx);
833 int alg_print (BIO *x, X509_ALGOR *alg)
836 const unsigned char *p;
837 p = alg->parameter->value.sequence->data;
838 pbe = d2i_PBEPARAM (NULL, &p, alg->parameter->value.sequence->length);
841 BIO_printf (bio_err, "%s, Iteration %ld\n",
842 OBJ_nid2ln(OBJ_obj2nid(alg->algorithm)),
843 ASN1_INTEGER_get(pbe->iter));
848 /* Load all certificates from a given file */
850 int cert_load(BIO *in, STACK_OF(X509) *sk)
856 CRYPTO_push_info("cert_load(): reading one cert");
858 while((cert = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
863 sk_X509_push(sk, cert);
865 CRYPTO_push_info("cert_load(): reading one cert");
871 if(ret) ERR_clear_error();
875 /* Generalised attribute print: handle PKCS#8 and bag attributes */
877 int print_attribs (BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst,const char *name)
879 X509_ATTRIBUTE *attr;
884 BIO_printf(out, "%s: <No Attributes>\n", name);
887 if(!sk_X509_ATTRIBUTE_num(attrlst)) {
888 BIO_printf(out, "%s: <Empty Attributes>\n", name);
891 BIO_printf(out, "%s\n", name);
892 for(i = 0; i < sk_X509_ATTRIBUTE_num(attrlst); i++) {
893 attr = sk_X509_ATTRIBUTE_value(attrlst, i);
894 attr_nid = OBJ_obj2nid(attr->object);
895 BIO_printf(out, " ");
896 if(attr_nid == NID_undef) {
897 i2a_ASN1_OBJECT (out, attr->object);
898 BIO_printf(out, ": ");
899 } else BIO_printf(out, "%s: ", OBJ_nid2ln(attr_nid));
901 if(sk_ASN1_TYPE_num(attr->value.set)) {
902 av = sk_ASN1_TYPE_value(attr->value.set, 0);
904 case V_ASN1_BMPSTRING:
905 value = uni2asc(av->value.bmpstring->data,
906 av->value.bmpstring->length);
907 BIO_printf(out, "%s\n", value);
911 case V_ASN1_OCTET_STRING:
912 hex_prin(out, av->value.octet_string->data,
913 av->value.octet_string->length);
914 BIO_printf(out, "\n");
917 case V_ASN1_BIT_STRING:
918 hex_prin(out, av->value.bit_string->data,
919 av->value.bit_string->length);
920 BIO_printf(out, "\n");
924 BIO_printf(out, "<Unsupported tag %d>\n", av->type);
927 } else BIO_printf(out, "<No Values>\n");
932 void hex_prin(BIO *out, unsigned char *buf, int len)
935 for (i = 0; i < len; i++) BIO_printf (out, "%02X ", buf[i]);