3 * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
6 /* ====================================================================
7 * Copyright (c) 1999 The OpenSSL Project. All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in
18 * the documentation and/or other materials provided with the
21 * 3. All advertising materials mentioning features or use of this
22 * software must display the following acknowledgment:
23 * "This product includes software developed by the OpenSSL Project
24 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
26 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27 * endorse or promote products derived from this software without
28 * prior written permission. For written permission, please contact
29 * licensing@OpenSSL.org.
31 * 5. Products derived from this software may not be called "OpenSSL"
32 * nor may "OpenSSL" appear in their names without prior written
33 * permission of the OpenSSL Project.
35 * 6. Redistributions of any form whatsoever must retain the following
37 * "This product includes software developed by the OpenSSL Project
38 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
40 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
44 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51 * OF THE POSSIBILITY OF SUCH DAMAGE.
52 * ====================================================================
54 * This product includes cryptographic software written by Eric Young
55 * (eay@cryptsoft.com). This product includes software written by Tim
56 * Hudson (tjh@cryptsoft.com).
62 #include <openssl/pem.h>
63 #include <openssl/err.h>
64 #include <openssl/evp.h>
65 #include <openssl/pkcs12.h>
67 #define PROG pkcs8_main
69 int MAIN(int, char **);
71 int MAIN(int argc
, char **argv
)
74 char **args
, *infile
= NULL
, *outfile
= NULL
;
75 char *passargin
= NULL
, *passargout
= NULL
;
76 BIO
*in
= NULL
, *out
= NULL
;
79 const EVP_CIPHER
*cipher
= NULL
;
80 int iter
= PKCS12_DEFAULT_ITER
;
81 int informat
, outformat
;
82 int p8_broken
= PKCS8_OK
;
85 PKCS8_PRIV_KEY_INFO
*p8inf
= NULL
;
86 EVP_PKEY
*pkey
= NULL
;
87 char pass
[50], *passin
= NULL
, *passout
= NULL
, *p8pass
= NULL
;
90 #ifndef OPENSSL_NO_ENGINE
95 bio_err
= BIO_new_fp(stderr
, BIO_NOCLOSE
);
97 if (!load_config(bio_err
, NULL
))
100 informat
= FORMAT_PEM
;
101 outformat
= FORMAT_PEM
;
103 ERR_load_crypto_strings();
104 OpenSSL_add_all_algorithms();
106 while (!badarg
&& *args
&& *args
[0] == '-') {
107 if (!strcmp(*args
, "-v2")) {
110 cipher
= EVP_get_cipherbyname(*args
);
112 BIO_printf(bio_err
, "Unknown cipher %s\n", *args
);
117 } else if (!strcmp(*args
, "-v1")) {
120 pbe_nid
= OBJ_txt2nid(*args
);
121 if (pbe_nid
== NID_undef
) {
122 BIO_printf(bio_err
, "Unknown PBE algorithm %s\n", *args
);
127 } else if (!strcmp(*args
, "-inform")) {
130 informat
= str2fmt(*args
);
133 } else if (!strcmp(*args
, "-outform")) {
136 outformat
= str2fmt(*args
);
139 } else if (!strcmp(*args
, "-topk8"))
141 else if (!strcmp(*args
, "-noiter"))
143 else if (!strcmp(*args
, "-nocrypt"))
145 else if (!strcmp(*args
, "-nooct"))
146 p8_broken
= PKCS8_NO_OCTET
;
147 else if (!strcmp(*args
, "-nsdb"))
148 p8_broken
= PKCS8_NS_DB
;
149 else if (!strcmp(*args
, "-embed"))
150 p8_broken
= PKCS8_EMBEDDED_PARAM
;
151 else if (!strcmp(*args
, "-passin")) {
154 passargin
= *(++args
);
155 } else if (!strcmp(*args
, "-passout")) {
158 passargout
= *(++args
);
160 #ifndef OPENSSL_NO_ENGINE
161 else if (strcmp(*args
, "-engine") == 0) {
167 else if (!strcmp(*args
, "-in")) {
173 } else if (!strcmp(*args
, "-out")) {
186 BIO_printf(bio_err
, "Usage pkcs8 [options]\n");
187 BIO_printf(bio_err
, "where options are\n");
188 BIO_printf(bio_err
, "-in file input file\n");
189 BIO_printf(bio_err
, "-inform X input format (DER or PEM)\n");
191 "-passin arg input file pass phrase source\n");
192 BIO_printf(bio_err
, "-outform X output format (DER or PEM)\n");
193 BIO_printf(bio_err
, "-out file output file\n");
195 "-passout arg output file pass phrase source\n");
196 BIO_printf(bio_err
, "-topk8 output PKCS8 file\n");
198 "-nooct use (nonstandard) no octet format\n");
200 "-embed use (nonstandard) embedded DSA parameters format\n");
202 "-nsdb use (nonstandard) DSA Netscape DB format\n");
203 BIO_printf(bio_err
, "-noiter use 1 as iteration count\n");
205 "-nocrypt use or expect unencrypted private key\n");
207 "-v2 alg use PKCS#5 v2.0 and cipher \"alg\"\n");
209 "-v1 obj use PKCS#5 v1.5 and cipher \"alg\"\n");
210 #ifndef OPENSSL_NO_ENGINE
212 " -engine e use engine e, possibly a hardware device.\n");
216 #ifndef OPENSSL_NO_ENGINE
217 e
= setup_engine(bio_err
, engine
, 0);
220 if (!app_passwd(bio_err
, passargin
, passargout
, &passin
, &passout
)) {
221 BIO_printf(bio_err
, "Error getting passwords\n");
225 if ((pbe_nid
== -1) && !cipher
)
226 pbe_nid
= NID_pbeWithMD5AndDES_CBC
;
229 if (!(in
= BIO_new_file(infile
, "rb"))) {
230 BIO_printf(bio_err
, "Can't open input file %s\n", infile
);
234 in
= BIO_new_fp(stdin
, BIO_NOCLOSE
);
237 if (!(out
= BIO_new_file(outfile
, "wb"))) {
238 BIO_printf(bio_err
, "Can't open output file %s\n", outfile
);
242 out
= BIO_new_fp(stdout
, BIO_NOCLOSE
);
243 #ifdef OPENSSL_SYS_VMS
245 BIO
*tmpbio
= BIO_new(BIO_f_linebuffer());
246 out
= BIO_push(tmpbio
, out
);
251 pkey
= load_key(bio_err
, infile
, informat
, 1, passin
, e
, "key");
254 if (!(p8inf
= EVP_PKEY2PKCS8_broken(pkey
, p8_broken
))) {
255 BIO_printf(bio_err
, "Error converting key\n");
256 ERR_print_errors(bio_err
);
260 if (outformat
== FORMAT_PEM
)
261 PEM_write_bio_PKCS8_PRIV_KEY_INFO(out
, p8inf
);
262 else if (outformat
== FORMAT_ASN1
)
263 i2d_PKCS8_PRIV_KEY_INFO_bio(out
, p8inf
);
265 BIO_printf(bio_err
, "Bad format specified for key\n");
273 if (EVP_read_pw_string
274 (pass
, sizeof pass
, "Enter Encryption Password:", 1))
277 app_RAND_load_file(NULL
, bio_err
, 0);
278 if (!(p8
= PKCS8_encrypt(pbe_nid
, cipher
,
279 p8pass
, strlen(p8pass
),
280 NULL
, 0, iter
, p8inf
))) {
281 BIO_printf(bio_err
, "Error encrypting key\n");
282 ERR_print_errors(bio_err
);
285 app_RAND_write_file(NULL
, bio_err
);
286 if (outformat
== FORMAT_PEM
)
287 PEM_write_bio_PKCS8(out
, p8
);
288 else if (outformat
== FORMAT_ASN1
)
289 i2d_PKCS8_bio(out
, p8
);
291 BIO_printf(bio_err
, "Bad format specified for key\n");
301 if (informat
== FORMAT_PEM
)
302 p8inf
= PEM_read_bio_PKCS8_PRIV_KEY_INFO(in
, NULL
, NULL
, NULL
);
303 else if (informat
== FORMAT_ASN1
)
304 p8inf
= d2i_PKCS8_PRIV_KEY_INFO_bio(in
, NULL
);
306 BIO_printf(bio_err
, "Bad format specified for key\n");
310 if (informat
== FORMAT_PEM
)
311 p8
= PEM_read_bio_PKCS8(in
, NULL
, NULL
, NULL
);
312 else if (informat
== FORMAT_ASN1
)
313 p8
= d2i_PKCS8_bio(in
, NULL
);
315 BIO_printf(bio_err
, "Bad format specified for key\n");
320 BIO_printf(bio_err
, "Error reading key\n");
321 ERR_print_errors(bio_err
);
328 EVP_read_pw_string(pass
, sizeof pass
, "Enter Password:", 0);
330 p8inf
= PKCS8_decrypt(p8
, p8pass
, strlen(p8pass
));
334 BIO_printf(bio_err
, "Error decrypting key\n");
335 ERR_print_errors(bio_err
);
339 if (!(pkey
= EVP_PKCS82PKEY(p8inf
))) {
340 BIO_printf(bio_err
, "Error converting key\n");
341 ERR_print_errors(bio_err
);
346 BIO_printf(bio_err
, "Warning: broken key encoding: ");
347 switch (p8inf
->broken
) {
349 BIO_printf(bio_err
, "No Octet String in PrivateKey\n");
352 case PKCS8_EMBEDDED_PARAM
:
353 BIO_printf(bio_err
, "DSA parameters included in PrivateKey\n");
357 BIO_printf(bio_err
, "DSA public key include in PrivateKey\n");
360 case PKCS8_NEG_PRIVKEY
:
361 BIO_printf(bio_err
, "DSA private key value is negative\n");
365 BIO_printf(bio_err
, "Unknown broken type\n");
370 if (outformat
== FORMAT_PEM
)
371 PEM_write_bio_PrivateKey(out
, pkey
, NULL
, NULL
, 0, NULL
, passout
);
372 else if (outformat
== FORMAT_ASN1
)
373 i2d_PrivateKey_bio(out
, pkey
);
375 BIO_printf(bio_err
, "Bad format specified for key\n");
382 PKCS8_PRIV_KEY_INFO_free(p8inf
);
387 OPENSSL_free(passin
);
389 OPENSSL_free(passout
);