pkey.c 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. /* apps/pkey.c */
  2. /*
  3. * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
  4. * 2006
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 2006 The OpenSSL Project. All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  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
  19. * distribution.
  20. *
  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/)"
  25. *
  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.
  30. *
  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.
  34. *
  35. * 6. Redistributions of any form whatsoever must retain the following
  36. * acknowledgment:
  37. * "This product includes software developed by the OpenSSL Project
  38. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  39. *
  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. * ====================================================================
  53. *
  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).
  57. *
  58. */
  59. #include <stdio.h>
  60. #include <string.h>
  61. #include "apps.h"
  62. #include <openssl/pem.h>
  63. #include <openssl/err.h>
  64. #include <openssl/evp.h>
  65. #define PROG pkey_main
  66. int MAIN(int, char **);
  67. int MAIN(int argc, char **argv)
  68. {
  69. ENGINE *e = NULL;
  70. char **args, *infile = NULL, *outfile = NULL;
  71. char *passargin = NULL, *passargout = NULL;
  72. BIO *in = NULL, *out = NULL;
  73. const EVP_CIPHER *cipher = NULL;
  74. int informat, outformat;
  75. int pubin = 0, pubout = 0, pubtext = 0, text = 0, noout = 0;
  76. EVP_PKEY *pkey = NULL;
  77. char *passin = NULL, *passout = NULL;
  78. int badarg = 0;
  79. char *engine = NULL;
  80. int ret = 1;
  81. if (bio_err == NULL)
  82. bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
  83. if (!load_config(bio_err, NULL))
  84. goto end;
  85. informat = FORMAT_PEM;
  86. outformat = FORMAT_PEM;
  87. ERR_load_crypto_strings();
  88. OpenSSL_add_all_algorithms();
  89. args = argv + 1;
  90. while (!badarg && *args && *args[0] == '-') {
  91. if (!strcmp(*args, "-inform")) {
  92. if (args[1]) {
  93. args++;
  94. informat = str2fmt(*args);
  95. } else
  96. badarg = 1;
  97. } else if (!strcmp(*args, "-outform")) {
  98. if (args[1]) {
  99. args++;
  100. outformat = str2fmt(*args);
  101. } else
  102. badarg = 1;
  103. } else if (!strcmp(*args, "-passin")) {
  104. if (!args[1])
  105. goto bad;
  106. passargin = *(++args);
  107. } else if (!strcmp(*args, "-passout")) {
  108. if (!args[1])
  109. goto bad;
  110. passargout = *(++args);
  111. }
  112. #ifndef OPENSSL_NO_ENGINE
  113. else if (strcmp(*args, "-engine") == 0) {
  114. if (!args[1])
  115. goto bad;
  116. engine = *(++args);
  117. }
  118. #endif
  119. else if (!strcmp(*args, "-in")) {
  120. if (args[1]) {
  121. args++;
  122. infile = *args;
  123. } else
  124. badarg = 1;
  125. } else if (!strcmp(*args, "-out")) {
  126. if (args[1]) {
  127. args++;
  128. outfile = *args;
  129. } else
  130. badarg = 1;
  131. } else if (strcmp(*args, "-pubin") == 0) {
  132. pubin = 1;
  133. pubout = 1;
  134. pubtext = 1;
  135. } else if (strcmp(*args, "-pubout") == 0)
  136. pubout = 1;
  137. else if (strcmp(*args, "-text_pub") == 0) {
  138. pubtext = 1;
  139. text = 1;
  140. } else if (strcmp(*args, "-text") == 0)
  141. text = 1;
  142. else if (strcmp(*args, "-noout") == 0)
  143. noout = 1;
  144. else {
  145. cipher = EVP_get_cipherbyname(*args + 1);
  146. if (!cipher) {
  147. BIO_printf(bio_err, "Unknown cipher %s\n", *args + 1);
  148. badarg = 1;
  149. }
  150. }
  151. args++;
  152. }
  153. if (badarg) {
  154. bad:
  155. BIO_printf(bio_err, "Usage pkey [options]\n");
  156. BIO_printf(bio_err, "where options are\n");
  157. BIO_printf(bio_err, "-in file input file\n");
  158. BIO_printf(bio_err, "-inform X input format (DER or PEM)\n");
  159. BIO_printf(bio_err,
  160. "-passin arg input file pass phrase source\n");
  161. BIO_printf(bio_err, "-outform X output format (DER or PEM)\n");
  162. BIO_printf(bio_err, "-out file output file\n");
  163. BIO_printf(bio_err,
  164. "-passout arg output file pass phrase source\n");
  165. #ifndef OPENSSL_NO_ENGINE
  166. BIO_printf(bio_err,
  167. "-engine e use engine e, possibly a hardware device.\n");
  168. #endif
  169. return 1;
  170. }
  171. e = setup_engine(bio_err, engine, 0);
  172. if (!app_passwd(bio_err, passargin, passargout, &passin, &passout)) {
  173. BIO_printf(bio_err, "Error getting passwords\n");
  174. goto end;
  175. }
  176. if (outfile) {
  177. if (!(out = BIO_new_file(outfile, "wb"))) {
  178. BIO_printf(bio_err, "Can't open output file %s\n", outfile);
  179. goto end;
  180. }
  181. } else {
  182. out = BIO_new_fp(stdout, BIO_NOCLOSE);
  183. #ifdef OPENSSL_SYS_VMS
  184. {
  185. BIO *tmpbio = BIO_new(BIO_f_linebuffer());
  186. out = BIO_push(tmpbio, out);
  187. }
  188. #endif
  189. }
  190. if (pubin)
  191. pkey = load_pubkey(bio_err, infile, informat, 1,
  192. passin, e, "Public Key");
  193. else
  194. pkey = load_key(bio_err, infile, informat, 1, passin, e, "key");
  195. if (!pkey)
  196. goto end;
  197. if (!noout) {
  198. if (outformat == FORMAT_PEM) {
  199. if (pubout)
  200. PEM_write_bio_PUBKEY(out, pkey);
  201. else
  202. PEM_write_bio_PrivateKey(out, pkey, cipher,
  203. NULL, 0, NULL, passout);
  204. } else if (outformat == FORMAT_ASN1) {
  205. if (pubout)
  206. i2d_PUBKEY_bio(out, pkey);
  207. else
  208. i2d_PrivateKey_bio(out, pkey);
  209. } else {
  210. BIO_printf(bio_err, "Bad format specified for key\n");
  211. goto end;
  212. }
  213. }
  214. if (text) {
  215. if (pubtext)
  216. EVP_PKEY_print_public(out, pkey, 0, NULL);
  217. else
  218. EVP_PKEY_print_private(out, pkey, 0, NULL);
  219. }
  220. ret = 0;
  221. end:
  222. EVP_PKEY_free(pkey);
  223. release_engine(e);
  224. BIO_free_all(out);
  225. BIO_free(in);
  226. if (passin)
  227. OPENSSL_free(passin);
  228. if (passout)
  229. OPENSSL_free(passout);
  230. return ret;
  231. }