blob: a027566ac04288f2187acbf31b285b946a60b282 [file] [log] [blame]
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +00001/* pkcs12.c */
Bodo Möllera8515441999-08-02 21:44:49 +00002#if !defined(NO_DES) && !defined(NO_SHA1)
3
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +00004/* 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>
Bodo Möllera8733562000-01-13 21:10:43 +000064#include <openssl/crypto.h>
Ulf Möllerb5929501999-04-27 11:56:15 +000065#include <openssl/des.h>
Bodo Möllerec577821999-04-23 22:13:45 +000066#include <openssl/pem.h>
67#include <openssl/err.h>
68#include <openssl/pkcs12.h>
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +000069
70#include "apps.h"
71#define PROG pkcs12_main
72
73EVP_CIPHER *enc;
74
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +000075
76#define NOKEYS 0x1
77#define NOCERTS 0x2
78#define INFO 0x4
79#define CLCERTS 0x8
80#define CACERTS 0x10
81
Ben Laurie84c15db1999-06-04 22:23:10 +000082int get_cert_chain(X509 *cert, STACK_OF(X509) **chain);
Ben Laurie61f5b6f1999-04-23 15:01:15 +000083int dump_certs_keys_p12(BIO *out, PKCS12 *p12, char *pass, int passlen, int options);
84int dump_certs_pkeys_bags(BIO *out, STACK *bags, char *pass, int passlen, int options);
85int dump_certs_pkeys_bag(BIO *out, PKCS12_SAFEBAG *bags, char *pass, int passlen, int options);
Ben Laurie84c15db1999-06-04 22:23:10 +000086int print_attribs(BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst, char *name);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +000087void hex_prin(BIO *out, unsigned char *buf, int len);
88int alg_print(BIO *x, X509_ALGOR *alg);
Ben Laurie84c15db1999-06-04 22:23:10 +000089int cert_load(BIO *in, STACK_OF(X509) *sk);
Ulf Möller6b691a51999-04-19 21:31:43 +000090int MAIN(int argc, char **argv)
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +000091{
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;
Dr. Stephen Hensone84240d1999-05-19 12:45:16 +0000103 int iter = PKCS12_DEFAULT_ITER;
Dr. Stephen Hensondad666f2000-01-08 03:16:04 +0000104 int maciter = PKCS12_DEFAULT_ITER;
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000105 int twopass = 0;
106 int keytype = 0;
107 int cert_pbe = NID_pbe_WithSHA1And40BitRC2_CBC;
Dr. Stephen Henson525f51f1999-12-23 02:02:42 +0000108 int key_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000109 int ret = 1;
110 int macver = 1;
Dr. Stephen Hensone40b7ab1999-05-08 12:59:50 +0000111 int noprompt = 0;
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000112 STACK *canames = NULL;
Dr. Stephen Hensone40b7ab1999-05-08 12:59:50 +0000113 char *cpass = NULL, *mpass = NULL;
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000114
115 apps_startup();
116
117 enc = EVP_des_ede3_cbc();
118 if (bio_err == NULL ) bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
119
120 args = argv + 1;
121
122
123 while (*args) {
124 if (*args[0] == '-') {
125 if (!strcmp (*args, "-nokeys")) options |= NOKEYS;
126 else if (!strcmp (*args, "-keyex")) keytype = KEY_EX;
127 else if (!strcmp (*args, "-keysig")) keytype = KEY_SIG;
128 else if (!strcmp (*args, "-nocerts")) options |= NOCERTS;
129 else if (!strcmp (*args, "-clcerts")) options |= CLCERTS;
130 else if (!strcmp (*args, "-cacerts")) options |= CACERTS;
131 else if (!strcmp (*args, "-noout")) options |= (NOKEYS|NOCERTS);
132 else if (!strcmp (*args, "-info")) options |= INFO;
133 else if (!strcmp (*args, "-chain")) chain = 1;
134 else if (!strcmp (*args, "-twopass")) twopass = 1;
135 else if (!strcmp (*args, "-nomacver")) macver = 0;
136 else if (!strcmp (*args, "-descert"))
137 cert_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
138 else if (!strcmp (*args, "-export")) export_cert = 1;
139 else if (!strcmp (*args, "-des")) enc=EVP_des_cbc();
140#ifndef NO_IDEA
141 else if (!strcmp (*args, "-idea")) enc=EVP_idea_cbc();
142#endif
143 else if (!strcmp (*args, "-des3")) enc = EVP_des_ede3_cbc();
144 else if (!strcmp (*args, "-noiter")) iter = 1;
Dr. Stephen Hensone84240d1999-05-19 12:45:16 +0000145 else if (!strcmp (*args, "-maciter"))
146 maciter = PKCS12_DEFAULT_ITER;
Dr. Stephen Hensondad666f2000-01-08 03:16:04 +0000147 else if (!strcmp (*args, "-nomaciter"))
148 maciter = 1;
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000149 else if (!strcmp (*args, "-nodes")) enc=NULL;
Dr. Stephen Henson525f51f1999-12-23 02:02:42 +0000150 else if (!strcmp (*args, "-certpbe")) {
151 if (args[1]) {
152 args++;
153 cert_pbe=OBJ_txt2nid(*args);
154 if(cert_pbe == NID_undef) {
155 BIO_printf(bio_err,
156 "Unknown PBE algorithm %s\n", *args);
157 badarg = 1;
158 }
159 } else badarg = 1;
160 } else if (!strcmp (*args, "-keypbe")) {
161 if (args[1]) {
162 args++;
163 key_pbe=OBJ_txt2nid(*args);
164 if(key_pbe == NID_undef) {
165 BIO_printf(bio_err,
166 "Unknown PBE algorithm %s\n", *args);
167 badarg = 1;
168 }
169 } else badarg = 1;
170 } else if (!strcmp (*args, "-inkey")) {
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000171 if (args[1]) {
172 args++;
173 keyname = *args;
174 } else badarg = 1;
175 } else if (!strcmp (*args, "-certfile")) {
176 if (args[1]) {
177 args++;
178 certfile = *args;
179 } else badarg = 1;
180 } else if (!strcmp (*args, "-name")) {
181 if (args[1]) {
182 args++;
183 name = *args;
184 } else badarg = 1;
185 } else if (!strcmp (*args, "-caname")) {
186 if (args[1]) {
187 args++;
188 if (!canames) canames = sk_new(NULL);
189 sk_push(canames, *args);
190 } else badarg = 1;
191 } else if (!strcmp (*args, "-in")) {
192 if (args[1]) {
193 args++;
194 infile = *args;
195 } else badarg = 1;
196 } else if (!strcmp (*args, "-out")) {
197 if (args[1]) {
198 args++;
199 outfile = *args;
200 } else badarg = 1;
Dr. Stephen Hensone40b7ab1999-05-08 12:59:50 +0000201 } else if (!strcmp (*args, "-envpass")) {
202 if (args[1]) {
203 args++;
204 if(!(cpass = getenv(*args))) {
205 BIO_printf(bio_err,
206 "Can't read environment variable %s\n", *args);
207 goto end;
208 }
209 noprompt = 1;
210 } else badarg = 1;
211 } else if (!strcmp (*args, "-password")) {
212 if (args[1]) {
213 args++;
214 cpass = *args;
215 noprompt = 1;
216 } else badarg = 1;
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000217 } else badarg = 1;
218
219 } else badarg = 1;
220 args++;
221 }
222
223 if (badarg) {
224 BIO_printf (bio_err, "Usage: pkcs12 [options]\n");
225 BIO_printf (bio_err, "where options are\n");
226 BIO_printf (bio_err, "-export output PKCS12 file\n");
227 BIO_printf (bio_err, "-chain add certificate chain\n");
228 BIO_printf (bio_err, "-inkey file private key if not infile\n");
229 BIO_printf (bio_err, "-certfile f add all certs in f\n");
230 BIO_printf (bio_err, "-name \"name\" use name as friendly name\n");
231 BIO_printf (bio_err, "-caname \"nm\" use nm as CA friendly name (can be used more than once).\n");
232 BIO_printf (bio_err, "-in infile input filename\n");
233 BIO_printf (bio_err, "-out outfile output filename\n");
234 BIO_printf (bio_err, "-noout don't output anything, just verify.\n");
235 BIO_printf (bio_err, "-nomacver don't verify MAC.\n");
236 BIO_printf (bio_err, "-nocerts don't output certificates.\n");
237 BIO_printf (bio_err, "-clcerts only output client certificates.\n");
238 BIO_printf (bio_err, "-cacerts only output CA certificates.\n");
239 BIO_printf (bio_err, "-nokeys don't output private keys.\n");
240 BIO_printf (bio_err, "-info give info about PKCS#12 structure.\n");
241 BIO_printf (bio_err, "-des encrypt private keys with DES\n");
242 BIO_printf (bio_err, "-des3 encrypt private keys with triple DES (default)\n");
243#ifndef NO_IDEA
244 BIO_printf (bio_err, "-idea encrypt private keys with idea\n");
245#endif
246 BIO_printf (bio_err, "-nodes don't encrypt private keys\n");
247 BIO_printf (bio_err, "-noiter don't use encryption iteration\n");
248 BIO_printf (bio_err, "-maciter use MAC iteration\n");
249 BIO_printf (bio_err, "-twopass separate MAC, encryption passwords\n");
250 BIO_printf (bio_err, "-descert encrypt PKCS#12 certificates with triple DES (default RC2-40)\n");
Dr. Stephen Henson525f51f1999-12-23 02:02:42 +0000251 BIO_printf (bio_err, "-certpbe alg specify certificate PBE algorithm (default RC2-40)\n");
252 BIO_printf (bio_err, "-keypbe alg specify private key PBE algorithm (default 3DES)\n");
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000253 BIO_printf (bio_err, "-keyex set MS key exchange type\n");
254 BIO_printf (bio_err, "-keysig set MS key signature type\n");
Dr. Stephen Hensone40b7ab1999-05-08 12:59:50 +0000255 BIO_printf (bio_err, "-password p set import/export password (NOT RECOMMENDED)\n");
256 BIO_printf (bio_err, "-envpass p set import/export password from environment\n");
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000257 goto end;
258 }
259
Dr. Stephen Hensone40b7ab1999-05-08 12:59:50 +0000260 if(cpass) mpass = cpass;
261 else {
262 cpass = pass;
263 mpass = macpass;
264 }
265
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000266 ERR_load_crypto_strings();
267
Bodo Möllera8733562000-01-13 21:10:43 +0000268#ifdef CRYPTO_MDEBUG
269 CRYPTO_push_info("read files");
270#endif
271
Dr. Stephen Henson12ea4471999-07-29 21:50:34 +0000272 if (!infile) in = BIO_new_fp(stdin, BIO_NOCLOSE);
273 else in = BIO_new_file(infile, "rb");
274 if (!in) {
275 BIO_printf(bio_err, "Error opening input file %s\n",
276 infile ? infile : "<stdin>");
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000277 perror (infile);
278 goto end;
Dr. Stephen Henson12ea4471999-07-29 21:50:34 +0000279 }
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000280
281 if (certfile) {
Dr. Stephen Henson12ea4471999-07-29 21:50:34 +0000282 if(!(certsin = BIO_new_file(certfile, "r"))) {
283 BIO_printf(bio_err, "Can't open certificate file %s\n", certfile);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000284 perror (certfile);
285 goto end;
286 }
287 }
288
289 if (keyname) {
Dr. Stephen Henson12ea4471999-07-29 21:50:34 +0000290 if(!(inkey = BIO_new_file(keyname, "r"))) {
291 BIO_printf(bio_err, "Can't key certificate file %s\n", keyname);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000292 perror (keyname);
293 goto end;
294 }
295 }
296
Bodo Möllera8733562000-01-13 21:10:43 +0000297#ifdef CRYPTO_MDEBUG
298 CRYPTO_pop_info();
299 CRYPTO_push_info("write files");
300#endif
301
Dr. Stephen Henson12ea4471999-07-29 21:50:34 +0000302 if (!outfile) out = BIO_new_fp(stdout, BIO_NOCLOSE);
303 else out = BIO_new_file(outfile, "wb");
304 if (!out) {
305 BIO_printf(bio_err, "Error opening output file %s\n",
306 outfile ? outfile : "<stdout>");
307 perror (outfile);
308 goto end;
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000309 }
310 if (twopass) {
Bodo Möllera8733562000-01-13 21:10:43 +0000311#ifdef CRYPTO_MDEBUG
312 CRYPTO_push_info("read MAC password");
313#endif
Dr. Stephen Henson12ea4471999-07-29 21:50:34 +0000314 if(EVP_read_pw_string (macpass, 50, "Enter MAC Password:", export_cert))
315 {
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000316 BIO_printf (bio_err, "Can't read Password\n");
317 goto end;
318 }
Bodo Möllera8733562000-01-13 21:10:43 +0000319#ifdef CRYPTO_MDEBUG
320 CRYPTO_pop_info();
321#endif
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000322 }
323
Dr. Stephen Henson2d681b71999-10-05 12:57:50 +0000324 if (export_cert) {
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000325 EVP_PKEY *key;
326 STACK *bags, *safes;
327 PKCS12_SAFEBAG *bag;
328 PKCS8_PRIV_KEY_INFO *p8;
329 PKCS7 *authsafe;
Dr. Stephen Henson2d681b71999-10-05 12:57:50 +0000330 X509 *ucert = NULL;
Dr. Stephen Hensond4cec6a1999-11-26 00:27:07 +0000331 STACK_OF(X509) *certs=NULL;
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000332 char *catmp;
Dr. Stephen Henson12ea4471999-07-29 21:50:34 +0000333 int i;
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000334 unsigned char keyid[EVP_MAX_MD_SIZE];
Dr. Stephen Henson12ea4471999-07-29 21:50:34 +0000335 unsigned int keyidlen = 0;
Bodo Möllera8733562000-01-13 21:10:43 +0000336
337#ifdef CRYPTO_MDEBUG
338 CRYPTO_push_info("process -export_cert");
339#endif
Bodo Möller74678cc1999-07-21 20:57:16 +0000340 key = PEM_read_bio_PrivateKey(inkey ? inkey : in, NULL, NULL, NULL);
Dr. Stephen Henson12ea4471999-07-29 21:50:34 +0000341 if (!inkey) (void) BIO_reset(in);
Dr. Stephen Hensond4cec6a1999-11-26 00:27:07 +0000342 else BIO_free(inkey);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000343 if (!key) {
344 BIO_printf (bio_err, "Error loading private key\n");
345 ERR_print_errors(bio_err);
346 goto end;
347 }
348
Ben Laurie84c15db1999-06-04 22:23:10 +0000349 certs = sk_X509_new(NULL);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000350
351 /* Load in all certs in input file */
352 if(!cert_load(in, certs)) {
353 BIO_printf(bio_err, "Error loading certificates from input\n");
354 ERR_print_errors(bio_err);
355 goto end;
356 }
Dr. Stephen Henson12ea4471999-07-29 21:50:34 +0000357
358 for(i = 0; i < sk_X509_num(certs); i++) {
359 ucert = sk_X509_value(certs, i);
360 if(X509_check_private_key(ucert, key)) {
Dr. Stephen Henson2d681b71999-10-05 12:57:50 +0000361 X509_digest(ucert, EVP_sha1(), keyid, &keyidlen);
Dr. Stephen Henson12ea4471999-07-29 21:50:34 +0000362 break;
363 }
364 }
365
366 if(!keyidlen) {
367 BIO_printf(bio_err, "No certificate matches private key\n");
368 goto end;
369 }
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000370
371 bags = sk_new (NULL);
372
373 /* Add any more certificates asked for */
374 if (certsin) {
375 if(!cert_load(certsin, certs)) {
376 BIO_printf(bio_err, "Error loading certificates from certfile\n");
377 ERR_print_errors(bio_err);
378 goto end;
379 }
380 BIO_free(certsin);
381 }
382
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000383 /* If chaining get chain from user cert */
384 if (chain) {
385 int vret;
Ben Laurie84c15db1999-06-04 22:23:10 +0000386 STACK_OF(X509) *chain2;
Ben Laurie3dcc1ff1999-04-01 10:17:35 +0000387 vret = get_cert_chain (ucert, &chain2);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000388 if (vret) {
389 BIO_printf (bio_err, "Error %s getting chain.\n",
390 X509_verify_cert_error_string(vret));
391 goto end;
392 }
393 /* Exclude verified certificate */
Ben Laurie84c15db1999-06-04 22:23:10 +0000394 for (i = 1; i < sk_X509_num (chain2) ; i++)
395 sk_X509_push(certs, sk_X509_value (chain2, i));
396 sk_X509_free(chain2);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000397
398 }
399
400 /* We now have loads of certificates: include them all */
Ben Laurie84c15db1999-06-04 22:23:10 +0000401 for(i = 0; i < sk_X509_num(certs); i++) {
Dr. Stephen Henson2d681b71999-10-05 12:57:50 +0000402 X509 *cert = NULL;
Ben Laurie84c15db1999-06-04 22:23:10 +0000403 cert = sk_X509_value(certs, i);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000404 bag = M_PKCS12_x5092certbag(cert);
Dr. Stephen Henson12ea4471999-07-29 21:50:34 +0000405 /* If it matches private key set id */
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000406 if(cert == ucert) {
407 if(name) PKCS12_add_friendlyname(bag, name, -1);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000408 PKCS12_add_localkeyid(bag, keyid, keyidlen);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000409 } else if((catmp = sk_shift(canames)))
410 PKCS12_add_friendlyname(bag, catmp, -1);
411 sk_push(bags, (char *)bag);
412 }
Dr. Stephen Hensond4cec6a1999-11-26 00:27:07 +0000413 sk_X509_pop_free(certs, X509_free);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000414 if (canames) sk_free(canames);
415
Dr. Stephen Hensone40b7ab1999-05-08 12:59:50 +0000416 if(!noprompt &&
417 EVP_read_pw_string(pass, 50, "Enter Export Password:", 1)) {
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000418 BIO_printf (bio_err, "Can't read Password\n");
419 goto end;
420 }
421 if (!twopass) strcpy(macpass, pass);
422 /* Turn certbags into encrypted authsafe */
Dr. Stephen Henson12ea4471999-07-29 21:50:34 +0000423 authsafe = PKCS12_pack_p7encdata(cert_pbe, cpass, -1, NULL, 0,
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000424 iter, bags);
425 sk_pop_free(bags, PKCS12_SAFEBAG_free);
426
427 if (!authsafe) {
428 ERR_print_errors (bio_err);
429 goto end;
430 }
431
432 safes = sk_new (NULL);
433 sk_push (safes, (char *)authsafe);
434
435 /* Make a shrouded key bag */
436 p8 = EVP_PKEY2PKCS8 (key);
437 EVP_PKEY_free(key);
438 if(keytype) PKCS8_add_keyusage(p8, keytype);
Dr. Stephen Henson525f51f1999-12-23 02:02:42 +0000439 bag = PKCS12_MAKE_SHKEYBAG(key_pbe, cpass, -1, NULL, 0, iter, p8);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000440 PKCS8_PRIV_KEY_INFO_free(p8);
441 if (name) PKCS12_add_friendlyname (bag, name, -1);
Dr. Stephen Henson12ea4471999-07-29 21:50:34 +0000442 PKCS12_add_localkeyid (bag, keyid, keyidlen);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000443 bags = sk_new(NULL);
444 sk_push (bags, (char *)bag);
445 /* Turn it into unencrypted safe bag */
446 authsafe = PKCS12_pack_p7data (bags);
447 sk_pop_free(bags, PKCS12_SAFEBAG_free);
448 sk_push (safes, (char *)authsafe);
449
450 p12 = PKCS12_init (NID_pkcs7_data);
451
452 M_PKCS12_pack_authsafes (p12, safes);
453
454 sk_pop_free(safes, PKCS7_free);
455
Dr. Stephen Hensone40b7ab1999-05-08 12:59:50 +0000456 PKCS12_set_mac (p12, mpass, -1, NULL, 0, maciter, NULL);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000457
458 i2d_PKCS12_bio (out, p12);
459
460 PKCS12_free(p12);
461
462 ret = 0;
Bodo Möllera8733562000-01-13 21:10:43 +0000463
464#ifdef CRYPTO_MDEBUG
465 CRYPTO_pop_info();
466#endif
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000467 goto end;
468
Bodo Mölleree86c3f1999-05-16 12:01:49 +0000469 }
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000470
471 if (!(p12 = d2i_PKCS12_bio (in, NULL))) {
472 ERR_print_errors(bio_err);
473 goto end;
474 }
475
Bodo Möllera8733562000-01-13 21:10:43 +0000476#ifdef CRYPTO_MDEBUG
477 CRYPTO_push_info("read import password");
478#endif
Dr. Stephen Hensone40b7ab1999-05-08 12:59:50 +0000479 if(!noprompt && EVP_read_pw_string(pass, 50, "Enter Import Password:", 0)) {
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000480 BIO_printf (bio_err, "Can't read Password\n");
481 goto end;
482 }
Bodo Möllera8733562000-01-13 21:10:43 +0000483#ifdef CRYPTO_MDEBUG
484 CRYPTO_pop_info();
485#endif
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000486
487 if (!twopass) strcpy(macpass, pass);
488
489 if (options & INFO) BIO_printf (bio_err, "MAC Iteration %ld\n", p12->mac->iter ? ASN1_INTEGER_get (p12->mac->iter) : 1);
490 if(macver) {
Bodo Möllera8733562000-01-13 21:10:43 +0000491#ifdef CRYPTO_MDEBUG
492 CRYPTO_push_info("verify MAC");
493#endif
Dr. Stephen Hensone40b7ab1999-05-08 12:59:50 +0000494 if (!PKCS12_verify_mac (p12, mpass, -1)) {
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000495 BIO_printf (bio_err, "Mac verify errror: invalid password?\n");
496 ERR_print_errors (bio_err);
497 goto end;
498 } else BIO_printf (bio_err, "MAC verified OK\n");
Bodo Möllera8733562000-01-13 21:10:43 +0000499#ifdef CRYPTO_MDEBUG
500 CRYPTO_pop_info();
501#endif
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000502 }
503
Bodo Möllera8733562000-01-13 21:10:43 +0000504#ifdef CRYPTO_MDEBUG
505 CRYPTO_push_info("output keys and certificates");
506#endif
Dr. Stephen Hensone40b7ab1999-05-08 12:59:50 +0000507 if (!dump_certs_keys_p12 (out, p12, cpass, -1, options)) {
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000508 BIO_printf(bio_err, "Error outputting keys and certificates\n");
509 ERR_print_errors (bio_err);
510 goto end;
511 }
Bodo Möllera8733562000-01-13 21:10:43 +0000512#ifdef CRYPTO_MDEBUG
513 CRYPTO_pop_info();
514#endif
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000515 PKCS12_free(p12);
516 ret = 0;
517 end:
Bodo Möllera8733562000-01-13 21:10:43 +0000518#ifdef CRYPTO_MDEBUG
519 CRYPTO_remove_all_info();
520#endif
521 BIO_free(in);
Dr. Stephen Hensonbec9e0d1999-05-27 13:10:59 +0000522 BIO_free(out);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000523 EXIT(ret);
524}
525
Ben Laurie61f5b6f1999-04-23 15:01:15 +0000526int dump_certs_keys_p12 (BIO *out, PKCS12 *p12, char *pass,
Ulf Möller6b691a51999-04-19 21:31:43 +0000527 int passlen, int options)
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000528{
529 STACK *asafes, *bags;
530 int i, bagnid;
531 PKCS7 *p7;
532 if (!( asafes = M_PKCS12_unpack_authsafes (p12))) return 0;
533 for (i = 0; i < sk_num (asafes); i++) {
534 p7 = (PKCS7 *) sk_value (asafes, i);
535 bagnid = OBJ_obj2nid (p7->type);
536 if (bagnid == NID_pkcs7_data) {
537 bags = M_PKCS12_unpack_p7data (p7);
538 if (options & INFO) BIO_printf (bio_err, "PKCS7 Data\n");
539 } else if (bagnid == NID_pkcs7_encrypted) {
540 if (options & INFO) {
541 BIO_printf (bio_err, "PKCS7 Encrypted data: ");
542 alg_print (bio_err,
543 p7->d.encrypted->enc_data->algorithm);
544 }
545 bags = M_PKCS12_unpack_p7encdata (p7, pass, passlen);
546 } else continue;
547 if (!bags) return 0;
548 if (!dump_certs_pkeys_bags (out, bags, pass, passlen,
549 options)) {
550 sk_pop_free (bags, PKCS12_SAFEBAG_free);
551 return 0;
552 }
553 sk_pop_free (bags, PKCS12_SAFEBAG_free);
554 }
555 sk_pop_free (asafes, PKCS7_free);
556 return 1;
557}
558
Ben Laurie61f5b6f1999-04-23 15:01:15 +0000559int dump_certs_pkeys_bags (BIO *out, STACK *bags, char *pass,
Ulf Möller6b691a51999-04-19 21:31:43 +0000560 int passlen, int options)
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000561{
562 int i;
563 for (i = 0; i < sk_num (bags); i++) {
564 if (!dump_certs_pkeys_bag (out,
565 (PKCS12_SAFEBAG *)sk_value (bags, i), pass, passlen,
566 options)) return 0;
567 }
568 return 1;
569}
570
Ben Laurie61f5b6f1999-04-23 15:01:15 +0000571int dump_certs_pkeys_bag (BIO *out, PKCS12_SAFEBAG *bag, char *pass,
Ulf Möller6b691a51999-04-19 21:31:43 +0000572 int passlen, int options)
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000573{
574 EVP_PKEY *pkey;
575 PKCS8_PRIV_KEY_INFO *p8;
576 X509 *x509;
577
578 switch (M_PKCS12_bag_type(bag))
579 {
580 case NID_keyBag:
581 if (options & INFO) BIO_printf (bio_err, "Key bag\n");
582 if (options & NOKEYS) return 1;
583 print_attribs (out, bag->attrib, "Bag Attributes");
584 p8 = bag->value.keybag;
585 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
586 print_attribs (out, p8->attributes, "Key Attributes");
Bodo Möller74678cc1999-07-21 20:57:16 +0000587 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, NULL);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000588 EVP_PKEY_free(pkey);
589 break;
590
591 case NID_pkcs8ShroudedKeyBag:
592 if (options & INFO) {
593 BIO_printf (bio_err, "Shrouded Keybag: ");
594 alg_print (bio_err, bag->value.shkeybag->algor);
595 }
596 if (options & NOKEYS) return 1;
597 print_attribs (out, bag->attrib, "Bag Attributes");
598 if (!(p8 = M_PKCS12_decrypt_skey (bag, pass, passlen)))
599 return 0;
600 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
601 print_attribs (out, p8->attributes, "Key Attributes");
602 PKCS8_PRIV_KEY_INFO_free(p8);
Bodo Möller74678cc1999-07-21 20:57:16 +0000603 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, NULL);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000604 EVP_PKEY_free(pkey);
605 break;
606
607 case NID_certBag:
608 if (options & INFO) BIO_printf (bio_err, "Certificate bag\n");
609 if (options & NOCERTS) return 1;
610 if (PKCS12_get_attr(bag, NID_localKeyID)) {
611 if (options & CACERTS) return 1;
612 } else if (options & CLCERTS) return 1;
613 print_attribs (out, bag->attrib, "Bag Attributes");
614 if (M_PKCS12_cert_bag_type(bag) != NID_x509Certificate )
615 return 1;
616 if (!(x509 = M_PKCS12_certbag2x509(bag))) return 0;
617 dump_cert_text (out, x509);
618 PEM_write_bio_X509 (out, x509);
619 X509_free(x509);
620 break;
621
622 case NID_safeContentsBag:
623 if (options & INFO) BIO_printf (bio_err, "Safe Contents bag\n");
624 print_attribs (out, bag->attrib, "Bag Attributes");
625 return dump_certs_pkeys_bags (out, bag->value.safes, pass,
626 passlen, options);
627
628 default:
629 BIO_printf (bio_err, "Warning unsupported bag type: ");
630 i2a_ASN1_OBJECT (bio_err, bag->type);
631 BIO_printf (bio_err, "\n");
632 return 1;
633 break;
634 }
635 return 1;
636}
637
638/* Given a single certificate return a verified chain or NULL if error */
639
640/* Hope this is OK .... */
641
Ben Laurie84c15db1999-06-04 22:23:10 +0000642int get_cert_chain (X509 *cert, STACK_OF(X509) **chain)
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000643{
644 X509_STORE *store;
645 X509_STORE_CTX store_ctx;
Ben Laurie84c15db1999-06-04 22:23:10 +0000646 STACK_OF(X509) *chn;
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000647 int i;
Bodo Möllera8733562000-01-13 21:10:43 +0000648
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000649 store = X509_STORE_new ();
650 X509_STORE_set_default_paths (store);
651 X509_STORE_CTX_init(&store_ctx, store, cert, NULL);
652 if (X509_verify_cert(&store_ctx) <= 0) {
653 i = X509_STORE_CTX_get_error (&store_ctx);
654 goto err;
655 }
Dr. Stephen Henson25f923d2000-01-09 14:21:40 +0000656 chn = X509_STORE_CTX_rget_chain(&store_ctx);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000657 i = 0;
658 *chain = chn;
659err:
660 X509_STORE_CTX_cleanup(&store_ctx);
661 X509_STORE_free(store);
662
663 return i;
664}
665
Ulf Möller6b691a51999-04-19 21:31:43 +0000666int alg_print (BIO *x, X509_ALGOR *alg)
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000667{
668 PBEPARAM *pbe;
669 unsigned char *p;
670 p = alg->parameter->value.sequence->data;
671 pbe = d2i_PBEPARAM (NULL, &p, alg->parameter->value.sequence->length);
672 BIO_printf (bio_err, "%s, Iteration %d\n",
673 OBJ_nid2ln(OBJ_obj2nid(alg->algorithm)), ASN1_INTEGER_get(pbe->iter));
674 PBEPARAM_free (pbe);
675 return 0;
676}
677
678/* Load all certificates from a given file */
679
Ben Laurie84c15db1999-06-04 22:23:10 +0000680int cert_load(BIO *in, STACK_OF(X509) *sk)
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000681{
682 int ret;
683 X509 *cert;
684 ret = 0;
Bodo Möller74678cc1999-07-21 20:57:16 +0000685 while((cert = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000686 ret = 1;
Ben Laurie84c15db1999-06-04 22:23:10 +0000687 sk_X509_push(sk, cert);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000688 }
689 if(ret) ERR_clear_error();
690 return ret;
691}
692
693/* Generalised attribute print: handle PKCS#8 and bag attributes */
694
Ben Laurie84c15db1999-06-04 22:23:10 +0000695int print_attribs (BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst, char *name)
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000696{
697 X509_ATTRIBUTE *attr;
698 ASN1_TYPE *av;
699 char *value;
700 int i, attr_nid;
701 if(!attrlst) {
702 BIO_printf(out, "%s: <No Attributes>\n", name);
703 return 1;
704 }
Ben Laurie84c15db1999-06-04 22:23:10 +0000705 if(!sk_X509_ATTRIBUTE_num(attrlst)) {
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000706 BIO_printf(out, "%s: <Empty Attributes>\n", name);
707 return 1;
708 }
709 BIO_printf(out, "%s\n", name);
Ben Laurie84c15db1999-06-04 22:23:10 +0000710 for(i = 0; i < sk_X509_ATTRIBUTE_num(attrlst); i++) {
711 attr = sk_X509_ATTRIBUTE_value(attrlst, i);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000712 attr_nid = OBJ_obj2nid(attr->object);
713 BIO_printf(out, " ");
714 if(attr_nid == NID_undef) {
715 i2a_ASN1_OBJECT (out, attr->object);
716 BIO_printf(out, ": ");
717 } else BIO_printf(out, "%s: ", OBJ_nid2ln(attr_nid));
718
Ben Laurie0b3f8271999-05-02 21:36:58 +0000719 if(sk_ASN1_TYPE_num(attr->value.set)) {
720 av = sk_ASN1_TYPE_value(attr->value.set, 0);
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000721 switch(av->type) {
722 case V_ASN1_BMPSTRING:
723 value = uni2asc(av->value.bmpstring->data,
724 av->value.bmpstring->length);
725 BIO_printf(out, "%s\n", value);
726 Free(value);
727 break;
728
729 case V_ASN1_OCTET_STRING:
730 hex_prin(out, av->value.bit_string->data,
731 av->value.bit_string->length);
732 BIO_printf(out, "\n");
733 break;
734
735 case V_ASN1_BIT_STRING:
736 hex_prin(out, av->value.octet_string->data,
737 av->value.octet_string->length);
738 BIO_printf(out, "\n");
739 break;
740
741 default:
742 BIO_printf(out, "<Unsupported tag %d>\n", av->type);
743 break;
744 }
745 } else BIO_printf(out, "<No Values>\n");
746 }
747 return 1;
748}
749
Ulf Möller6b691a51999-04-19 21:31:43 +0000750void hex_prin(BIO *out, unsigned char *buf, int len)
Dr. Stephen Hensonee0508d1999-03-29 17:50:26 +0000751{
752 int i;
753 for (i = 0; i < len; i++) BIO_printf (out, "%02X ", buf[i]);
754}
Bodo Möllera8515441999-08-02 21:44:49 +0000755
756#endif