1999-06-05 00:32:16 +00:00
|
|
|
/* pkcs8.c */
|
2008-11-05 18:39:08 +00:00
|
|
|
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
|
2004-06-24 13:10:54 +00:00
|
|
|
* project 1999-2004.
|
1999-06-05 00:32:16 +00:00
|
|
|
*/
|
|
|
|
/* ====================================================================
|
|
|
|
* Copyright (c) 1999 The OpenSSL Project. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* 3. All advertising materials mentioning features or use of this
|
|
|
|
* software must display the following acknowledgment:
|
|
|
|
* "This product includes software developed by the OpenSSL Project
|
|
|
|
* for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
|
|
|
|
*
|
|
|
|
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
|
|
|
* endorse or promote products derived from this software without
|
|
|
|
* prior written permission. For written permission, please contact
|
|
|
|
* licensing@OpenSSL.org.
|
|
|
|
*
|
|
|
|
* 5. Products derived from this software may not be called "OpenSSL"
|
|
|
|
* nor may "OpenSSL" appear in their names without prior written
|
|
|
|
* permission of the OpenSSL Project.
|
|
|
|
*
|
|
|
|
* 6. Redistributions of any form whatsoever must retain the following
|
|
|
|
* acknowledgment:
|
|
|
|
* "This product includes software developed by the OpenSSL Project
|
|
|
|
* for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
|
|
|
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
|
|
|
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
|
|
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
* ====================================================================
|
|
|
|
*
|
|
|
|
* This product includes cryptographic software written by Eric Young
|
|
|
|
* (eay@cryptsoft.com). This product includes software written by Tim
|
|
|
|
* Hudson (tjh@cryptsoft.com).
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
1999-07-28 23:25:59 +00:00
|
|
|
#include <string.h>
|
2000-01-01 16:42:49 +00:00
|
|
|
#include "apps.h"
|
1999-06-05 00:32:16 +00:00
|
|
|
#include <openssl/pem.h>
|
|
|
|
#include <openssl/err.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/pkcs12.h>
|
|
|
|
|
|
|
|
#define PROG pkcs8_main
|
|
|
|
|
2000-02-11 09:47:18 +00:00
|
|
|
int MAIN(int, char **);
|
1999-06-05 00:32:16 +00:00
|
|
|
|
|
|
|
int MAIN(int argc, char **argv)
|
2004-06-24 13:10:54 +00:00
|
|
|
{
|
2000-10-26 21:07:28 +00:00
|
|
|
ENGINE *e = NULL;
|
1999-06-05 00:32:16 +00:00
|
|
|
char **args, *infile = NULL, *outfile = NULL;
|
2000-02-16 23:16:01 +00:00
|
|
|
char *passargin = NULL, *passargout = NULL;
|
1999-06-05 00:32:16 +00:00
|
|
|
BIO *in = NULL, *out = NULL;
|
|
|
|
int topk8 = 0;
|
|
|
|
int pbe_nid = -1;
|
1999-06-08 00:09:51 +00:00
|
|
|
const EVP_CIPHER *cipher = NULL;
|
1999-06-05 00:32:16 +00:00
|
|
|
int iter = PKCS12_DEFAULT_ITER;
|
1999-06-05 01:45:20 +00:00
|
|
|
int informat, outformat;
|
1999-06-05 00:32:16 +00:00
|
|
|
int p8_broken = PKCS8_OK;
|
1999-06-05 12:39:10 +00:00
|
|
|
int nocrypt = 0;
|
2009-02-12 18:02:47 +00:00
|
|
|
X509_SIG *p8 = NULL;
|
|
|
|
PKCS8_PRIV_KEY_INFO *p8inf = NULL;
|
2002-03-14 09:52:03 +00:00
|
|
|
EVP_PKEY *pkey=NULL;
|
2000-02-22 18:45:11 +00:00
|
|
|
char pass[50], *passin = NULL, *passout = NULL, *p8pass = NULL;
|
1999-06-05 00:32:16 +00:00
|
|
|
int badarg = 0;
|
2009-02-12 18:02:47 +00:00
|
|
|
int ret = 1;
|
2003-01-30 17:39:26 +00:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
2000-10-26 21:07:28 +00:00
|
|
|
char *engine=NULL;
|
2003-01-30 17:39:26 +00:00
|
|
|
#endif
|
2000-10-26 21:07:28 +00:00
|
|
|
|
1999-06-05 00:32:16 +00:00
|
|
|
if (bio_err == NULL) bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
|
2000-10-26 21:07:28 +00:00
|
|
|
|
2002-02-22 14:01:21 +00:00
|
|
|
if (!load_config(bio_err, NULL))
|
|
|
|
goto end;
|
|
|
|
|
1999-06-05 01:45:20 +00:00
|
|
|
informat=FORMAT_PEM;
|
|
|
|
outformat=FORMAT_PEM;
|
2000-10-26 21:07:28 +00:00
|
|
|
|
1999-06-05 00:32:16 +00:00
|
|
|
ERR_load_crypto_strings();
|
2000-02-04 14:01:38 +00:00
|
|
|
OpenSSL_add_all_algorithms();
|
1999-06-05 00:32:16 +00:00
|
|
|
args = argv + 1;
|
2004-06-24 13:10:54 +00:00
|
|
|
while (!badarg && *args && *args[0] == '-')
|
|
|
|
{
|
|
|
|
if (!strcmp(*args,"-v2"))
|
|
|
|
{
|
|
|
|
if (args[1])
|
|
|
|
{
|
1999-06-08 00:09:51 +00:00
|
|
|
args++;
|
|
|
|
cipher=EVP_get_cipherbyname(*args);
|
2004-06-24 13:10:54 +00:00
|
|
|
if (!cipher)
|
|
|
|
{
|
1999-06-08 00:09:51 +00:00
|
|
|
BIO_printf(bio_err,
|
|
|
|
"Unknown cipher %s\n", *args);
|
|
|
|
badarg = 1;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
1999-06-08 00:09:51 +00:00
|
|
|
}
|
2004-06-24 13:10:54 +00:00
|
|
|
else
|
|
|
|
badarg = 1;
|
|
|
|
}
|
|
|
|
else if (!strcmp(*args,"-v1"))
|
|
|
|
{
|
|
|
|
if (args[1])
|
|
|
|
{
|
1999-12-23 02:02:42 +00:00
|
|
|
args++;
|
|
|
|
pbe_nid=OBJ_txt2nid(*args);
|
2004-06-24 13:10:54 +00:00
|
|
|
if (pbe_nid == NID_undef)
|
|
|
|
{
|
1999-12-23 02:02:42 +00:00
|
|
|
BIO_printf(bio_err,
|
|
|
|
"Unknown PBE algorithm %s\n", *args);
|
|
|
|
badarg = 1;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
1999-12-23 02:02:42 +00:00
|
|
|
}
|
2004-06-24 13:10:54 +00:00
|
|
|
else
|
|
|
|
badarg = 1;
|
|
|
|
}
|
|
|
|
else if (!strcmp(*args,"-inform"))
|
|
|
|
{
|
|
|
|
if (args[1])
|
|
|
|
{
|
1999-06-05 01:45:20 +00:00
|
|
|
args++;
|
|
|
|
informat=str2fmt(*args);
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
|
|
|
else badarg = 1;
|
|
|
|
}
|
|
|
|
else if (!strcmp(*args,"-outform"))
|
|
|
|
{
|
|
|
|
if (args[1])
|
|
|
|
{
|
1999-06-05 01:45:20 +00:00
|
|
|
args++;
|
|
|
|
outformat=str2fmt(*args);
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
|
|
|
else badarg = 1;
|
|
|
|
}
|
|
|
|
else if (!strcmp (*args, "-topk8"))
|
|
|
|
topk8 = 1;
|
|
|
|
else if (!strcmp (*args, "-noiter"))
|
|
|
|
iter = 1;
|
|
|
|
else if (!strcmp (*args, "-nocrypt"))
|
|
|
|
nocrypt = 1;
|
|
|
|
else if (!strcmp (*args, "-nooct"))
|
|
|
|
p8_broken = PKCS8_NO_OCTET;
|
|
|
|
else if (!strcmp (*args, "-nsdb"))
|
|
|
|
p8_broken = PKCS8_NS_DB;
|
|
|
|
else if (!strcmp (*args, "-embed"))
|
|
|
|
p8_broken = PKCS8_EMBEDDED_PARAM;
|
2000-01-01 16:42:49 +00:00
|
|
|
else if (!strcmp(*args,"-passin"))
|
|
|
|
{
|
|
|
|
if (!args[1]) goto bad;
|
2000-02-16 23:16:01 +00:00
|
|
|
passargin= *(++args);
|
2000-01-01 16:42:49 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp(*args,"-passout"))
|
|
|
|
{
|
|
|
|
if (!args[1]) goto bad;
|
2000-02-16 23:16:01 +00:00
|
|
|
passargout= *(++args);
|
2000-01-01 16:42:49 +00:00
|
|
|
}
|
2003-01-30 17:39:26 +00:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
2000-10-26 21:07:28 +00:00
|
|
|
else if (strcmp(*args,"-engine") == 0)
|
|
|
|
{
|
|
|
|
if (!args[1]) goto bad;
|
|
|
|
engine= *(++args);
|
|
|
|
}
|
2003-01-30 17:39:26 +00:00
|
|
|
#endif
|
2004-06-24 13:10:54 +00:00
|
|
|
else if (!strcmp (*args, "-in"))
|
|
|
|
{
|
|
|
|
if (args[1])
|
|
|
|
{
|
1999-06-05 00:32:16 +00:00
|
|
|
args++;
|
|
|
|
infile = *args;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
|
|
|
else badarg = 1;
|
|
|
|
}
|
|
|
|
else if (!strcmp (*args, "-out"))
|
|
|
|
{
|
|
|
|
if (args[1])
|
|
|
|
{
|
1999-06-05 00:32:16 +00:00
|
|
|
args++;
|
|
|
|
outfile = *args;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
|
|
|
else badarg = 1;
|
|
|
|
}
|
|
|
|
else badarg = 1;
|
1999-06-05 00:32:16 +00:00
|
|
|
args++;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
1999-06-05 00:32:16 +00:00
|
|
|
|
2004-06-24 13:10:54 +00:00
|
|
|
if (badarg)
|
|
|
|
{
|
2000-01-01 16:42:49 +00:00
|
|
|
bad:
|
|
|
|
BIO_printf(bio_err, "Usage pkcs8 [options]\n");
|
|
|
|
BIO_printf(bio_err, "where options are\n");
|
2000-02-08 01:34:59 +00:00
|
|
|
BIO_printf(bio_err, "-in file input file\n");
|
|
|
|
BIO_printf(bio_err, "-inform X input format (DER or PEM)\n");
|
2000-02-16 23:16:01 +00:00
|
|
|
BIO_printf(bio_err, "-passin arg input file pass phrase source\n");
|
2000-02-08 01:34:59 +00:00
|
|
|
BIO_printf(bio_err, "-outform X output format (DER or PEM)\n");
|
|
|
|
BIO_printf(bio_err, "-out file output file\n");
|
2000-02-16 23:16:01 +00:00
|
|
|
BIO_printf(bio_err, "-passout arg output file pass phrase source\n");
|
2000-02-08 01:34:59 +00:00
|
|
|
BIO_printf(bio_err, "-topk8 output PKCS8 file\n");
|
|
|
|
BIO_printf(bio_err, "-nooct use (nonstandard) no octet format\n");
|
|
|
|
BIO_printf(bio_err, "-embed use (nonstandard) embedded DSA parameters format\n");
|
|
|
|
BIO_printf(bio_err, "-nsdb use (nonstandard) DSA Netscape DB format\n");
|
|
|
|
BIO_printf(bio_err, "-noiter use 1 as iteration count\n");
|
|
|
|
BIO_printf(bio_err, "-nocrypt use or expect unencrypted private key\n");
|
|
|
|
BIO_printf(bio_err, "-v2 alg use PKCS#5 v2.0 and cipher \"alg\"\n");
|
|
|
|
BIO_printf(bio_err, "-v1 obj use PKCS#5 v1.5 and cipher \"alg\"\n");
|
2003-01-30 17:39:26 +00:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
2000-10-26 21:07:28 +00:00
|
|
|
BIO_printf(bio_err," -engine e use engine e, possibly a hardware device.\n");
|
2003-01-30 17:39:26 +00:00
|
|
|
#endif
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
1999-06-05 00:32:16 +00:00
|
|
|
|
2003-01-30 17:39:26 +00:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
2001-06-18 06:22:33 +00:00
|
|
|
e = setup_engine(bio_err, engine, 0);
|
2003-01-30 17:39:26 +00:00
|
|
|
#endif
|
2000-10-26 21:07:28 +00:00
|
|
|
|
2004-06-24 13:10:54 +00:00
|
|
|
if (!app_passwd(bio_err, passargin, passargout, &passin, &passout))
|
|
|
|
{
|
2000-02-16 23:16:01 +00:00
|
|
|
BIO_printf(bio_err, "Error getting passwords\n");
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
2000-02-16 23:16:01 +00:00
|
|
|
|
2004-06-24 13:10:54 +00:00
|
|
|
if ((pbe_nid == -1) && !cipher)
|
|
|
|
pbe_nid = NID_pbeWithMD5AndDES_CBC;
|
1999-06-05 00:32:16 +00:00
|
|
|
|
2004-06-24 13:10:54 +00:00
|
|
|
if (infile)
|
|
|
|
{
|
|
|
|
if (!(in = BIO_new_file(infile, "rb")))
|
|
|
|
{
|
2000-01-01 16:42:49 +00:00
|
|
|
BIO_printf(bio_err,
|
1999-06-05 00:32:16 +00:00
|
|
|
"Can't open input file %s\n", infile);
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
1999-06-05 00:32:16 +00:00
|
|
|
}
|
2004-06-24 13:10:54 +00:00
|
|
|
else
|
|
|
|
in = BIO_new_fp (stdin, BIO_NOCLOSE);
|
1999-06-05 00:32:16 +00:00
|
|
|
|
2004-06-24 13:10:54 +00:00
|
|
|
if (outfile)
|
|
|
|
{
|
|
|
|
if (!(out = BIO_new_file (outfile, "wb")))
|
|
|
|
{
|
2000-01-01 16:42:49 +00:00
|
|
|
BIO_printf(bio_err,
|
1999-06-05 00:32:16 +00:00
|
|
|
"Can't open output file %s\n", outfile);
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
1999-06-05 00:32:16 +00:00
|
|
|
}
|
2004-06-24 13:10:54 +00:00
|
|
|
else
|
|
|
|
{
|
On VMS, stdout may very well lead to a file that is written to in a
record-oriented fashion. That means that every write() will write a
separate record, which will be read separately by the programs trying
to read from it. This can be very confusing.
The solution is to put a BIO filter in the way that will buffer text
until a linefeed is reached, and then write everything a line at a
time, so every record written will be an actual line, not chunks of
lines and not (usually doesn't happen, but I've seen it once) several
lines in one record. Voila, BIO_f_linebuffer() is born.
Since we're so close to release time, I'm making this VMS-only for
now, just to make sure no code is needlessly broken by this. After
the release, this BIO method will be enabled on all other platforms as
well.
2000-09-20 13:55:50 +00:00
|
|
|
out = BIO_new_fp (stdout, BIO_NOCLOSE);
|
2001-02-20 08:13:47 +00:00
|
|
|
#ifdef OPENSSL_SYS_VMS
|
2004-06-24 13:10:54 +00:00
|
|
|
{
|
On VMS, stdout may very well lead to a file that is written to in a
record-oriented fashion. That means that every write() will write a
separate record, which will be read separately by the programs trying
to read from it. This can be very confusing.
The solution is to put a BIO filter in the way that will buffer text
until a linefeed is reached, and then write everything a line at a
time, so every record written will be an actual line, not chunks of
lines and not (usually doesn't happen, but I've seen it once) several
lines in one record. Voila, BIO_f_linebuffer() is born.
Since we're so close to release time, I'm making this VMS-only for
now, just to make sure no code is needlessly broken by this. After
the release, this BIO method will be enabled on all other platforms as
well.
2000-09-20 13:55:50 +00:00
|
|
|
BIO *tmpbio = BIO_new(BIO_f_linebuffer());
|
|
|
|
out = BIO_push(tmpbio, out);
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
On VMS, stdout may very well lead to a file that is written to in a
record-oriented fashion. That means that every write() will write a
separate record, which will be read separately by the programs trying
to read from it. This can be very confusing.
The solution is to put a BIO filter in the way that will buffer text
until a linefeed is reached, and then write everything a line at a
time, so every record written will be an actual line, not chunks of
lines and not (usually doesn't happen, but I've seen it once) several
lines in one record. Voila, BIO_f_linebuffer() is born.
Since we're so close to release time, I'm making this VMS-only for
now, just to make sure no code is needlessly broken by this. After
the release, this BIO method will be enabled on all other platforms as
well.
2000-09-20 13:55:50 +00:00
|
|
|
#endif
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
2001-06-25 14:23:36 +00:00
|
|
|
if (topk8)
|
|
|
|
{
|
|
|
|
BIO_free(in); /* Not needed in this section */
|
2002-08-01 16:28:40 +00:00
|
|
|
pkey = load_key(bio_err, infile, informat, 1,
|
|
|
|
passin, e, "key");
|
2004-06-24 13:10:54 +00:00
|
|
|
if (!pkey)
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
if (!(p8inf = EVP_PKEY2PKCS8_broken(pkey, p8_broken)))
|
|
|
|
{
|
2003-04-03 23:39:48 +00:00
|
|
|
BIO_printf(bio_err, "Error converting key\n");
|
1999-06-05 00:32:16 +00:00
|
|
|
ERR_print_errors(bio_err);
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
|
|
|
if (nocrypt)
|
|
|
|
{
|
|
|
|
if (outformat == FORMAT_PEM)
|
1999-06-05 12:39:10 +00:00
|
|
|
PEM_write_bio_PKCS8_PRIV_KEY_INFO(out, p8inf);
|
2004-06-24 13:10:54 +00:00
|
|
|
else if (outformat == FORMAT_ASN1)
|
1999-06-05 12:39:10 +00:00
|
|
|
i2d_PKCS8_PRIV_KEY_INFO_bio(out, p8inf);
|
2004-06-24 13:10:54 +00:00
|
|
|
else
|
|
|
|
{
|
1999-06-05 12:39:10 +00:00
|
|
|
BIO_printf(bio_err, "Bad format specified for key\n");
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
1999-06-05 12:39:10 +00:00
|
|
|
}
|
2004-06-24 13:10:54 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (passout)
|
|
|
|
p8pass = passout;
|
|
|
|
else
|
|
|
|
{
|
2000-02-22 18:45:11 +00:00
|
|
|
p8pass = pass;
|
2002-11-13 15:43:43 +00:00
|
|
|
if (EVP_read_pw_string(pass, sizeof pass, "Enter Encryption Password:", 1))
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2003-06-25 21:35:05 +00:00
|
|
|
}
|
2000-02-22 18:45:11 +00:00
|
|
|
app_RAND_load_file(NULL, bio_err, 0);
|
1999-06-08 00:09:51 +00:00
|
|
|
if (!(p8 = PKCS8_encrypt(pbe_nid, cipher,
|
2000-02-22 18:45:11 +00:00
|
|
|
p8pass, strlen(p8pass),
|
2004-06-24 13:10:54 +00:00
|
|
|
NULL, 0, iter, p8inf)))
|
|
|
|
{
|
2003-04-03 23:39:48 +00:00
|
|
|
BIO_printf(bio_err, "Error encrypting key\n");
|
1999-06-05 12:39:10 +00:00
|
|
|
ERR_print_errors(bio_err);
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
2000-02-22 18:45:11 +00:00
|
|
|
app_RAND_write_file(NULL, bio_err);
|
2004-06-24 13:10:54 +00:00
|
|
|
if (outformat == FORMAT_PEM)
|
2000-01-01 16:42:49 +00:00
|
|
|
PEM_write_bio_PKCS8(out, p8);
|
2004-06-24 13:10:54 +00:00
|
|
|
else if (outformat == FORMAT_ASN1)
|
1999-06-05 12:39:10 +00:00
|
|
|
i2d_PKCS8_bio(out, p8);
|
2004-06-24 13:10:54 +00:00
|
|
|
else
|
|
|
|
{
|
1999-06-05 12:39:10 +00:00
|
|
|
BIO_printf(bio_err, "Bad format specified for key\n");
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-12 18:02:47 +00:00
|
|
|
ret = 0;
|
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
1999-06-05 00:32:16 +00:00
|
|
|
|
2004-06-24 13:10:54 +00:00
|
|
|
if (nocrypt)
|
|
|
|
{
|
|
|
|
if (informat == FORMAT_PEM)
|
1999-07-21 20:57:16 +00:00
|
|
|
p8inf = PEM_read_bio_PKCS8_PRIV_KEY_INFO(in,NULL,NULL, NULL);
|
2004-06-24 13:10:54 +00:00
|
|
|
else if (informat == FORMAT_ASN1)
|
1999-06-05 12:39:10 +00:00
|
|
|
p8inf = d2i_PKCS8_PRIV_KEY_INFO_bio(in, NULL);
|
2004-06-24 13:10:54 +00:00
|
|
|
else
|
|
|
|
{
|
1999-06-05 12:39:10 +00:00
|
|
|
BIO_printf(bio_err, "Bad format specified for key\n");
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
1999-06-05 12:39:10 +00:00
|
|
|
}
|
2004-06-24 13:10:54 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (informat == FORMAT_PEM)
|
1999-07-21 20:57:16 +00:00
|
|
|
p8 = PEM_read_bio_PKCS8(in, NULL, NULL, NULL);
|
2004-06-24 13:10:54 +00:00
|
|
|
else if (informat == FORMAT_ASN1)
|
1999-06-05 12:39:10 +00:00
|
|
|
p8 = d2i_PKCS8_bio(in, NULL);
|
2004-06-24 13:10:54 +00:00
|
|
|
else
|
|
|
|
{
|
1999-06-05 12:39:10 +00:00
|
|
|
BIO_printf(bio_err, "Bad format specified for key\n");
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
1999-06-05 01:45:20 +00:00
|
|
|
|
2004-06-24 13:10:54 +00:00
|
|
|
if (!p8)
|
|
|
|
{
|
2003-04-03 23:39:48 +00:00
|
|
|
BIO_printf (bio_err, "Error reading key\n");
|
1999-06-05 12:39:10 +00:00
|
|
|
ERR_print_errors(bio_err);
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
|
|
|
if (passin)
|
|
|
|
p8pass = passin;
|
|
|
|
else
|
|
|
|
{
|
2000-02-22 18:45:11 +00:00
|
|
|
p8pass = pass;
|
2002-11-13 15:43:43 +00:00
|
|
|
EVP_read_pw_string(pass, sizeof pass, "Enter Password:", 0);
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
2000-12-31 01:13:04 +00:00
|
|
|
p8inf = PKCS8_decrypt(p8, p8pass, strlen(p8pass));
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
1999-06-05 12:39:10 +00:00
|
|
|
|
2004-06-24 13:10:54 +00:00
|
|
|
if (!p8inf)
|
|
|
|
{
|
2003-04-03 23:39:48 +00:00
|
|
|
BIO_printf(bio_err, "Error decrypting key\n");
|
1999-06-05 00:32:16 +00:00
|
|
|
ERR_print_errors(bio_err);
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
1999-06-05 00:32:16 +00:00
|
|
|
|
2004-06-24 13:10:54 +00:00
|
|
|
if (!(pkey = EVP_PKCS82PKEY(p8inf)))
|
|
|
|
{
|
2003-04-03 23:39:48 +00:00
|
|
|
BIO_printf(bio_err, "Error converting key\n");
|
1999-06-05 00:32:16 +00:00
|
|
|
ERR_print_errors(bio_err);
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
1999-06-05 00:32:16 +00:00
|
|
|
|
2004-06-24 13:10:54 +00:00
|
|
|
if (p8inf->broken)
|
|
|
|
{
|
1999-06-05 00:32:16 +00:00
|
|
|
BIO_printf(bio_err, "Warning: broken key encoding: ");
|
2004-06-24 13:10:54 +00:00
|
|
|
switch (p8inf->broken)
|
|
|
|
{
|
1999-06-05 00:32:16 +00:00
|
|
|
case PKCS8_NO_OCTET:
|
2000-02-05 21:07:56 +00:00
|
|
|
BIO_printf(bio_err, "No Octet String in PrivateKey\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PKCS8_EMBEDDED_PARAM:
|
|
|
|
BIO_printf(bio_err, "DSA parameters included in PrivateKey\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PKCS8_NS_DB:
|
|
|
|
BIO_printf(bio_err, "DSA public key include in PrivateKey\n");
|
1999-06-05 00:32:16 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
BIO_printf(bio_err, "Unknown broken type\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-24 13:10:54 +00:00
|
|
|
if (outformat == FORMAT_PEM)
|
2000-02-16 23:16:01 +00:00
|
|
|
PEM_write_bio_PrivateKey(out, pkey, NULL, NULL, 0, NULL, passout);
|
2004-06-24 13:10:54 +00:00
|
|
|
else if (outformat == FORMAT_ASN1)
|
2000-01-01 16:42:49 +00:00
|
|
|
i2d_PrivateKey_bio(out, pkey);
|
2004-06-24 13:10:54 +00:00
|
|
|
else
|
|
|
|
{
|
2000-01-01 16:42:49 +00:00
|
|
|
BIO_printf(bio_err, "Bad format specified for key\n");
|
2009-02-12 18:02:47 +00:00
|
|
|
goto end;
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|
2009-02-12 18:02:47 +00:00
|
|
|
ret = 0;
|
1999-06-05 00:32:16 +00:00
|
|
|
|
2002-02-22 14:01:21 +00:00
|
|
|
end:
|
2009-02-12 18:02:47 +00:00
|
|
|
X509_SIG_free(p8);
|
|
|
|
PKCS8_PRIV_KEY_INFO_free(p8inf);
|
1999-06-08 00:09:51 +00:00
|
|
|
EVP_PKEY_free(pkey);
|
On VMS, stdout may very well lead to a file that is written to in a
record-oriented fashion. That means that every write() will write a
separate record, which will be read separately by the programs trying
to read from it. This can be very confusing.
The solution is to put a BIO filter in the way that will buffer text
until a linefeed is reached, and then write everything a line at a
time, so every record written will be an actual line, not chunks of
lines and not (usually doesn't happen, but I've seen it once) several
lines in one record. Voila, BIO_f_linebuffer() is born.
Since we're so close to release time, I'm making this VMS-only for
now, just to make sure no code is needlessly broken by this. After
the release, this BIO method will be enabled on all other platforms as
well.
2000-09-20 13:55:50 +00:00
|
|
|
BIO_free_all(out);
|
1999-06-08 00:09:51 +00:00
|
|
|
BIO_free(in);
|
2004-06-24 13:10:54 +00:00
|
|
|
if (passin)
|
|
|
|
OPENSSL_free(passin);
|
|
|
|
if (passout)
|
|
|
|
OPENSSL_free(passout);
|
1999-06-08 00:09:51 +00:00
|
|
|
|
1999-06-05 00:32:16 +00:00
|
|
|
return (0);
|
2004-06-24 13:10:54 +00:00
|
|
|
}
|