Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project |
| 3 | * 2006 |
Dr. Stephen Henson | 3e84b6e | 2006-03-28 12:34:45 +0000 | [diff] [blame] | 4 | */ |
| 5 | /* ==================================================================== |
| 6 | * Copyright (c) 2006 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 |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 13 | * notice, this list of conditions and the following disclaimer. |
Dr. Stephen Henson | 3e84b6e | 2006-03-28 12:34:45 +0000 | [diff] [blame] | 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 "apps.h" |
| 61 | #include <openssl/pem.h> |
| 62 | #include <openssl/err.h> |
| 63 | #include <openssl/evp.h> |
| 64 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 65 | typedef enum OPTION_choice { |
| 66 | OPT_ERR = -1, OPT_EOF = 0, OPT_HELP, |
| 67 | OPT_INFORM, OPT_OUTFORM, OPT_PASSIN, OPT_PASSOUT, OPT_ENGINE, |
| 68 | OPT_IN, OPT_OUT, OPT_PUBIN, OPT_PUBOUT, OPT_TEXT_PUB, |
| 69 | OPT_TEXT, OPT_NOOUT, OPT_MD |
| 70 | } OPTION_CHOICE; |
Dr. Stephen Henson | 3e84b6e | 2006-03-28 12:34:45 +0000 | [diff] [blame] | 71 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 72 | OPTIONS pkey_options[] = { |
| 73 | {"help", OPT_HELP, '-', "Display this summary"}, |
| 74 | {"inform", OPT_INFORM, 'F', "Input format (DER or PEM)"}, |
| 75 | {"outform", OPT_OUTFORM, 'F', "Output format (DER or PEM)"}, |
| 76 | {"passin", OPT_PASSIN, 's', "Input file pass phrase source"}, |
| 77 | {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"}, |
| 78 | {"in", OPT_IN, '<', "Input file"}, |
| 79 | {"out", OPT_OUT, '>', "Output file"}, |
| 80 | {"pubin", OPT_PUBIN, '-', |
| 81 | "Read public key from input (default is private key)"}, |
| 82 | {"pubout", OPT_PUBOUT, '-', "Output public key, not private"}, |
| 83 | {"text_pub", OPT_TEXT_PUB, '-', "Only output public key components"}, |
| 84 | {"text", OPT_TEXT, '-', "Output in plaintext as well"}, |
| 85 | {"noout", OPT_NOOUT, '-', "Don't output the key"}, |
| 86 | {"", OPT_MD, '-', "Any supported cipher"}, |
| 87 | #ifndef OPENSSL_NO_ENGINE |
| 88 | {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"}, |
| 89 | #endif |
| 90 | {NULL} |
| 91 | }; |
Dr. Stephen Henson | 3e84b6e | 2006-03-28 12:34:45 +0000 | [diff] [blame] | 92 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 93 | int pkey_main(int argc, char **argv) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 94 | { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 95 | BIO *in = NULL, *out = NULL; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 96 | ENGINE *e = NULL; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 97 | EVP_PKEY *pkey = NULL; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 98 | const EVP_CIPHER *cipher = NULL; |
| 99 | char *infile = NULL, *outfile = NULL, *passin = NULL, *passout = NULL; |
Rich Salz | 333b070 | 2015-04-25 15:41:29 -0400 | [diff] [blame] | 100 | char *passinarg = NULL, *passoutarg = NULL, *prog; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 101 | OPTION_CHOICE o; |
| 102 | int informat = FORMAT_PEM, outformat = FORMAT_PEM; |
| 103 | int pubin = 0, pubout = 0, pubtext = 0, text = 0, noout = 0, ret = 1; |
Rich Salz | 3b061a0 | 2015-05-02 10:01:33 -0400 | [diff] [blame] | 104 | int private = 0; |
Dr. Stephen Henson | 3e84b6e | 2006-03-28 12:34:45 +0000 | [diff] [blame] | 105 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 106 | prog = opt_init(argc, argv, pkey_options); |
| 107 | while ((o = opt_next()) != OPT_EOF) { |
| 108 | switch (o) { |
| 109 | case OPT_EOF: |
| 110 | case OPT_ERR: |
| 111 | opthelp: |
| 112 | BIO_printf(bio_err, "%s: Use -help for summary.\n", prog); |
| 113 | goto end; |
| 114 | case OPT_HELP: |
| 115 | opt_help(pkey_options); |
| 116 | ret = 0; |
| 117 | goto end; |
| 118 | case OPT_INFORM: |
| 119 | if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &informat)) |
| 120 | goto opthelp; |
| 121 | break; |
| 122 | case OPT_OUTFORM: |
| 123 | if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &outformat)) |
| 124 | goto opthelp; |
| 125 | break; |
| 126 | case OPT_PASSIN: |
| 127 | passinarg = opt_arg(); |
| 128 | break; |
| 129 | case OPT_PASSOUT: |
| 130 | passoutarg = opt_arg(); |
| 131 | break; |
| 132 | case OPT_ENGINE: |
Rich Salz | 333b070 | 2015-04-25 15:41:29 -0400 | [diff] [blame] | 133 | e = setup_engine(opt_arg(), 0); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 134 | break; |
| 135 | case OPT_IN: |
| 136 | infile = opt_arg(); |
| 137 | break; |
| 138 | case OPT_OUT: |
| 139 | outfile = opt_arg(); |
| 140 | break; |
| 141 | case OPT_PUBIN: |
| 142 | pubin = pubout = pubtext = 1; |
| 143 | break; |
| 144 | case OPT_PUBOUT: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 145 | pubout = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 146 | break; |
| 147 | case OPT_TEXT_PUB: |
| 148 | pubtext = text = 1; |
| 149 | break; |
| 150 | case OPT_TEXT: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 151 | text = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 152 | break; |
| 153 | case OPT_NOOUT: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 154 | noout = 1; |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 155 | break; |
| 156 | case OPT_MD: |
| 157 | if (!opt_cipher(opt_unknown(), &cipher)) |
| 158 | goto opthelp; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 159 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 160 | } |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 161 | argc = opt_num_rest(); |
| 162 | argv = opt_rest(); |
Rich Salz | 3b061a0 | 2015-05-02 10:01:33 -0400 | [diff] [blame] | 163 | private = !noout && !pubout ? 1 : 0; |
| 164 | if (text && !pubtext) |
| 165 | private = 1; |
Dr. Stephen Henson | 3e84b6e | 2006-03-28 12:34:45 +0000 | [diff] [blame] | 166 | |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 167 | if (!app_passwd(passinarg, passoutarg, &passin, &passout)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 168 | BIO_printf(bio_err, "Error getting passwords\n"); |
| 169 | goto end; |
| 170 | } |
Dr. Stephen Henson | 3e84b6e | 2006-03-28 12:34:45 +0000 | [diff] [blame] | 171 | |
Richard Levitte | bdd58d9 | 2015-09-04 12:49:06 +0200 | [diff] [blame] | 172 | out = bio_open_owner(outfile, outformat, private); |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 173 | if (out == NULL) |
| 174 | goto end; |
Dr. Stephen Henson | 3e84b6e | 2006-03-28 12:34:45 +0000 | [diff] [blame] | 175 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 176 | if (pubin) |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 177 | pkey = load_pubkey(infile, informat, 1, passin, e, "Public Key"); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 178 | else |
Rich Salz | 7e1b748 | 2015-04-24 15:26:15 -0400 | [diff] [blame] | 179 | pkey = load_key(infile, informat, 1, passin, e, "key"); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 180 | if (!pkey) |
| 181 | goto end; |
Dr. Stephen Henson | 3e84b6e | 2006-03-28 12:34:45 +0000 | [diff] [blame] | 182 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 183 | if (!noout) { |
| 184 | if (outformat == FORMAT_PEM) { |
Rich Salz | 3b061a0 | 2015-05-02 10:01:33 -0400 | [diff] [blame] | 185 | assert(private); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 186 | if (pubout) |
| 187 | PEM_write_bio_PUBKEY(out, pkey); |
| 188 | else |
| 189 | PEM_write_bio_PrivateKey(out, pkey, cipher, |
| 190 | NULL, 0, NULL, passout); |
| 191 | } else if (outformat == FORMAT_ASN1) { |
Rich Salz | 3b061a0 | 2015-05-02 10:01:33 -0400 | [diff] [blame] | 192 | assert(private); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 193 | if (pubout) |
| 194 | i2d_PUBKEY_bio(out, pkey); |
| 195 | else |
| 196 | i2d_PrivateKey_bio(out, pkey); |
| 197 | } else { |
| 198 | BIO_printf(bio_err, "Bad format specified for key\n"); |
| 199 | goto end; |
| 200 | } |
Dr. Stephen Henson | 3e84b6e | 2006-03-28 12:34:45 +0000 | [diff] [blame] | 201 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 202 | } |
Dr. Stephen Henson | 3e84b6e | 2006-03-28 12:34:45 +0000 | [diff] [blame] | 203 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 204 | if (text) { |
| 205 | if (pubtext) |
| 206 | EVP_PKEY_print_public(out, pkey, 0, NULL); |
Rich Salz | 3b061a0 | 2015-05-02 10:01:33 -0400 | [diff] [blame] | 207 | else { |
| 208 | assert(private); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 209 | EVP_PKEY_print_private(out, pkey, 0, NULL); |
Rich Salz | 3b061a0 | 2015-05-02 10:01:33 -0400 | [diff] [blame] | 210 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 211 | } |
Dr. Stephen Henson | 3e84b6e | 2006-03-28 12:34:45 +0000 | [diff] [blame] | 212 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 213 | ret = 0; |
Dr. Stephen Henson | 3e4585c | 2006-03-28 14:35:32 +0000 | [diff] [blame] | 214 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 215 | end: |
| 216 | EVP_PKEY_free(pkey); |
| 217 | BIO_free_all(out); |
| 218 | BIO_free(in); |
Rich Salz | b548a1f | 2015-05-01 10:02:07 -0400 | [diff] [blame] | 219 | OPENSSL_free(passin); |
| 220 | OPENSSL_free(passout); |
Dr. Stephen Henson | 3e84b6e | 2006-03-28 12:34:45 +0000 | [diff] [blame] | 221 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 222 | return ret; |
| 223 | } |