Makefile clean-ups, crypto/bn/asm/alpha.s compiles on Alpha Linux.
[openssl.git] / apps / pkcs8.c
1 /* pkcs8.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 #include <stdio.h>
59 #include <string.h>
60 #include <openssl/pem.h>
61 #include <openssl/err.h>
62 #include <openssl/evp.h>
63 #include <openssl/pkcs12.h>
64
65 #include "apps.h"
66 #define PROG pkcs8_main
67
68
69 int MAIN(int argc, char **argv)
70 {
71         char **args, *infile = NULL, *outfile = NULL;
72         BIO *in = NULL, *out = NULL;
73         int topk8 = 0;
74         int pbe_nid = -1;
75         const EVP_CIPHER *cipher = NULL;
76         int iter = PKCS12_DEFAULT_ITER;
77         int informat, outformat;
78         int p8_broken = PKCS8_OK;
79         int nocrypt = 0;
80         X509_SIG *p8;
81         PKCS8_PRIV_KEY_INFO *p8inf;
82         EVP_PKEY *pkey;
83         char pass[50];
84         int badarg = 0;
85         if (bio_err == NULL) bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
86         informat=FORMAT_PEM;
87         outformat=FORMAT_PEM;
88         ERR_load_crypto_strings();
89         SSLeay_add_all_algorithms();
90         args = argv + 1;
91         while (!badarg && *args && *args[0] == '-') {
92                 if (!strcmp(*args,"-v2")) {
93                         if (args[1]) {
94                                 args++;
95                                 cipher=EVP_get_cipherbyname(*args);
96                                 if(!cipher) {
97                                         BIO_printf(bio_err,
98                                                  "Unknown cipher %s\n", *args);
99                                         badarg = 1;
100                                 }
101                         } else badarg = 1;
102                 } else if (!strcmp(*args,"-v1")) {
103                         if (args[1]) {
104                                 args++;
105                                 pbe_nid=OBJ_txt2nid(*args);
106                                 if(pbe_nid == NID_undef) {
107                                         BIO_printf(bio_err,
108                                                  "Unknown PBE algorithm %s\n", *args);
109                                         badarg = 1;
110                                 }
111                         } else badarg = 1;
112                 } else if (!strcmp(*args,"-inform")) {
113                         if (args[1]) {
114                                 args++;
115                                 informat=str2fmt(*args);
116                         } else badarg = 1;
117                 } else if (!strcmp(*args,"-outform")) {
118                         if (args[1]) {
119                                 args++;
120                                 outformat=str2fmt(*args);
121                         } else badarg = 1;
122                 } else if (!strcmp (*args, "-topk8")) topk8 = 1;
123                 else if (!strcmp (*args, "-noiter")) iter = 1;
124                 else if (!strcmp (*args, "-nocrypt")) nocrypt = 1;
125                 else if (!strcmp (*args, "-nooct")) p8_broken = PKCS8_NO_OCTET;
126                 else if (!strcmp (*args, "-in")) {
127                         if (args[1]) {
128                                 args++;
129                                 infile = *args;
130                         } else badarg = 1;
131                 } else if (!strcmp (*args, "-out")) {
132                         if (args[1]) {
133                                 args++;
134                                 outfile = *args;
135                         } else badarg = 1;
136                 } else badarg = 1;
137                 args++;
138         }
139
140         if (badarg) {
141                 BIO_printf (bio_err, "Usage pkcs8 [options]\n");
142                 BIO_printf (bio_err, "where options are\n");
143                 BIO_printf (bio_err, "-in file   input file\n");
144                 BIO_printf (bio_err, "-inform X  input format (DER or PEM)\n");
145                 BIO_printf (bio_err, "-outform X output format (DER or PEM)\n");
146                 BIO_printf (bio_err, "-out file  output file\n");
147                 BIO_printf (bio_err, "-topk8     output PKCS8 file\n");
148                 BIO_printf (bio_err, "-nooct     use (broken) no octet form\n");
149                 BIO_printf (bio_err, "-noiter    use 1 as iteration count\n");
150                 BIO_printf (bio_err, "-nocrypt   use or expect unencrypted private key\n");
151                 BIO_printf (bio_err, "-v2 alg    use PKCS#5 v2.0 and cipher \"alg\"\n");
152                 BIO_printf (bio_err, "-v1 obj    use PKCS#5 v1.5 and cipher \"alg\"\n");
153                 return (1);
154         }
155
156         if ((pbe_nid == -1) && !cipher) pbe_nid = NID_pbeWithMD5AndDES_CBC;
157
158         if (infile) {
159                 if (!(in = BIO_new_file (infile, "rb"))) {
160                         BIO_printf (bio_err,
161                                  "Can't open input file %s\n", infile);
162                         return (1);
163                 }
164         } else in = BIO_new_fp (stdin, BIO_NOCLOSE);
165
166         if (outfile) {
167                 if (!(out = BIO_new_file (outfile, "wb"))) {
168                         BIO_printf (bio_err,
169                                  "Can't open output file %s\n", outfile);
170                         return (1);
171                 }
172         } else out = BIO_new_fp (stdout, BIO_NOCLOSE);
173
174         if (topk8) {
175                 if (!(pkey = PEM_read_bio_PrivateKey(in, NULL, NULL, NULL))) {
176                         BIO_printf (bio_err, "Error reading key\n", outfile);
177                         ERR_print_errors(bio_err);
178                         return (1);
179                 }
180                 BIO_free(in);
181                 if (!(p8inf = EVP_PKEY2PKCS8(pkey))) {
182                         BIO_printf (bio_err, "Error converting key\n", outfile);
183                         ERR_print_errors(bio_err);
184                         return (1);
185                 }
186                 PKCS8_set_broken(p8inf, p8_broken);
187                 if(nocrypt) {
188                         if(outformat == FORMAT_PEM) 
189                                 PEM_write_bio_PKCS8_PRIV_KEY_INFO(out, p8inf);
190                         else if(outformat == FORMAT_ASN1)
191                                 i2d_PKCS8_PRIV_KEY_INFO_bio(out, p8inf);
192                         else {
193                                 BIO_printf(bio_err, "Bad format specified for key\n");
194                                 return (1);
195                         }
196                 } else {
197                         EVP_read_pw_string(pass, 50, "Enter Encryption Password:", 1);
198                         if (!(p8 = PKCS8_encrypt(pbe_nid, cipher,
199                                         pass, strlen(pass),
200                                         NULL, 0, iter, p8inf))) {
201                                 BIO_printf (bio_err, "Error encrypting key\n",
202                                                                  outfile);
203                                 ERR_print_errors(bio_err);
204                                 return (1);
205                         }
206                         if(outformat == FORMAT_PEM) 
207                                 PEM_write_bio_PKCS8 (out, p8);
208                         else if(outformat == FORMAT_ASN1)
209                                 i2d_PKCS8_bio(out, p8);
210                         else {
211                                 BIO_printf(bio_err, "Bad format specified for key\n");
212                                 return (1);
213                         }
214                         X509_SIG_free(p8);
215                 }
216                 PKCS8_PRIV_KEY_INFO_free (p8inf);
217                 EVP_PKEY_free(pkey);
218                 BIO_free(out);
219                 return (0);
220         }
221
222         if(nocrypt) {
223                 if(informat == FORMAT_PEM) 
224                         p8inf = PEM_read_bio_PKCS8_PRIV_KEY_INFO(in,NULL,NULL, NULL);
225                 else if(informat == FORMAT_ASN1)
226                         p8inf = d2i_PKCS8_PRIV_KEY_INFO_bio(in, NULL);
227                 else {
228                         BIO_printf(bio_err, "Bad format specified for key\n");
229                         return (1);
230                 }
231         } else {
232                 if(informat == FORMAT_PEM) 
233                         p8 = PEM_read_bio_PKCS8(in, NULL, NULL, NULL);
234                 else if(informat == FORMAT_ASN1)
235                         p8 = d2i_PKCS8_bio(in, NULL);
236                 else {
237                         BIO_printf(bio_err, "Bad format specified for key\n");
238                         return (1);
239                 }
240
241                 if (!p8) {
242                         BIO_printf (bio_err, "Error reading key\n", outfile);
243                         ERR_print_errors(bio_err);
244                         return (1);
245                 }
246                 EVP_read_pw_string(pass, 50, "Enter Password:", 0);
247                 p8inf = M_PKCS8_decrypt(p8, pass, strlen(pass));
248                 X509_SIG_free(p8);
249         }
250
251         if (!p8inf) {
252                 BIO_printf(bio_err, "Error decrypting key\n", outfile);
253                 ERR_print_errors(bio_err);
254                 return (1);
255         }
256
257         if (!(pkey = EVP_PKCS82PKEY(p8inf))) {
258                 BIO_printf(bio_err, "Error converting key\n", outfile);
259                 ERR_print_errors(bio_err);
260                 return (1);
261         }
262         
263         if (p8inf->broken) {
264                 BIO_printf(bio_err, "Warning: broken key encoding: ");
265                 switch (p8inf->broken) {
266                         case PKCS8_NO_OCTET:
267                         BIO_printf(bio_err, "No Octet String\n");
268                         break;
269
270                         default:
271                         BIO_printf(bio_err, "Unknown broken type\n");
272                         break;
273                 }
274         }
275         
276         PKCS8_PRIV_KEY_INFO_free(p8inf);
277
278         PEM_write_bio_PrivateKey(out, pkey, NULL, NULL, 0, NULL, NULL);
279
280         EVP_PKEY_free(pkey);
281         BIO_free(out);
282         BIO_free(in);
283
284         return (0);
285 }