pkey.c 7.5 KB

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