Small script to re-encode files that need it to UTF-8
[openssl.git] / apps / dsa.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57
58 #include <openssl/opensslconf.h> /* for OPENSSL_NO_DSA */
59 #ifndef OPENSSL_NO_DSA
60 # include <stdio.h>
61 # include <stdlib.h>
62 # include <string.h>
63 # include <time.h>
64 # include "apps.h"
65 # include <openssl/bio.h>
66 # include <openssl/err.h>
67 # include <openssl/dsa.h>
68 # include <openssl/evp.h>
69 # include <openssl/x509.h>
70 # include <openssl/pem.h>
71 # include <openssl/bn.h>
72
73 typedef enum OPTION_choice {
74     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
75     OPT_INFORM, OPT_OUTFORM, OPT_IN, OPT_OUT,
76     OPT_ENGINE, OPT_PVK_STRONG, OPT_PVK_WEAK,
77     OPT_PVK_NONE, OPT_NOOUT, OPT_TEXT, OPT_MODULUS, OPT_PUBIN,
78     OPT_PUBOUT, OPT_CIPHER, OPT_PASSIN, OPT_PASSOUT
79 } OPTION_CHOICE;
80
81 OPTIONS dsa_options[] = {
82     {"help", OPT_HELP, '-', "Display this summary"},
83     {"inform", OPT_INFORM, 'F', "Input format, DER PEM PVK"},
84     {"outform", OPT_OUTFORM, 'F', "Output format, DER PEM PVK"},
85     {"in", OPT_IN, '<', "Input file"},
86     {"out", OPT_OUT, '>', "Output file"},
87     {"noout", OPT_NOOUT, '-', "Don't print key out"},
88     {"text", OPT_TEXT, '-', "Print the key in text"},
89     {"modulus", OPT_MODULUS, '-', "Print the DSA public value"},
90     {"pubin", OPT_PUBIN, '-'},
91     {"pubout", OPT_PUBOUT, '-'},
92     {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
93     {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
94     {"", OPT_CIPHER, '-', "Any supported cipher"},
95 # ifndef OPENSSL_NO_RC4
96     {"pvk-strong", OPT_PVK_STRONG, '-'},
97     {"pvk-weak", OPT_PVK_WEAK, '-'},
98     {"pvk-none", OPT_PVK_NONE, '-'},
99 # endif
100 # ifndef OPENSSL_NO_ENGINE
101     {"engine", OPT_ENGINE, 's', "Use engine e, possibly a hardware device"},
102 # endif
103     {NULL}
104 };
105
106 int dsa_main(int argc, char **argv)
107 {
108     BIO *out = NULL;
109     DSA *dsa = NULL;
110     ENGINE *e = NULL;
111     const EVP_CIPHER *enc = NULL;
112     char *infile = NULL, *outfile = NULL, *prog;
113     char *passin = NULL, *passout = NULL, *passinarg = NULL, *passoutarg = NULL;
114     OPTION_CHOICE o;
115     int informat = FORMAT_PEM, outformat = FORMAT_PEM, text = 0, noout = 0;
116     int i, modulus = 0, pubin = 0, pubout = 0, pvk_encr = 2, ret = 1;
117     int private = 0;
118
119     prog = opt_init(argc, argv, dsa_options);
120     while ((o = opt_next()) != OPT_EOF) {
121         switch (o) {
122         case OPT_EOF:
123         case OPT_ERR:
124  opthelp:
125             ret = 0;
126             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
127             goto end;
128         case OPT_HELP:
129             opt_help(dsa_options);
130             ret = 0;
131             goto end;
132         case OPT_INFORM:
133             if (!opt_format
134                 (opt_arg(), OPT_FMT_PEMDER | OPT_FMT_PVK, &informat))
135                 goto opthelp;
136             break;
137         case OPT_IN:
138             infile = opt_arg();
139             break;
140         case OPT_OUTFORM:
141             if (!opt_format
142                 (opt_arg(), OPT_FMT_PEMDER | OPT_FMT_PVK, &outformat))
143                 goto opthelp;
144             break;
145         case OPT_OUT:
146             outfile = opt_arg();
147             break;
148         case OPT_ENGINE:
149             e = setup_engine(opt_arg(), 0);
150             break;
151         case OPT_PASSIN:
152             passinarg = opt_arg();
153             break;
154         case OPT_PASSOUT:
155             passoutarg = opt_arg();
156             break;
157 #ifndef OPENSSL_NO_RC4
158         case OPT_PVK_STRONG:
159             pvk_encr = 2;
160             break;
161         case OPT_PVK_WEAK:
162             pvk_encr = 1;
163             break;
164         case OPT_PVK_NONE:
165             pvk_encr = 0;
166             break;
167 #else
168         case OPT_PVK_STRONG:
169         case OPT_PVK_WEAK:
170         case OPT_PVK_NONE:
171             break;
172 #endif
173         case OPT_NOOUT:
174             noout = 1;
175             break;
176         case OPT_TEXT:
177             text = 1;
178             break;
179         case OPT_MODULUS:
180             modulus = 1;
181             break;
182         case OPT_PUBIN:
183             pubin = 1;
184             break;
185         case OPT_PUBOUT:
186             pubout = 1;
187             break;
188         case OPT_CIPHER:
189             if (!opt_cipher(opt_unknown(), &enc))
190                 goto end;
191             break;
192         }
193     }
194     argc = opt_num_rest();
195     argv = opt_rest();
196     private = pubin || pubout ? 0 : 1;
197     if (text)
198         private = 1;
199
200     if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
201         BIO_printf(bio_err, "Error getting passwords\n");
202         goto end;
203     }
204
205     if (!app_load_modules(NULL))
206         goto end;
207
208     BIO_printf(bio_err, "read DSA key\n");
209     {
210         EVP_PKEY *pkey;
211
212         if (pubin)
213             pkey = load_pubkey(infile, informat, 1, passin, e, "Public Key");
214         else
215             pkey = load_key(infile, informat, 1, passin, e, "Private Key");
216
217         if (pkey) {
218             dsa = EVP_PKEY_get1_DSA(pkey);
219             EVP_PKEY_free(pkey);
220         }
221     }
222     if (dsa == NULL) {
223         BIO_printf(bio_err, "unable to load Key\n");
224         ERR_print_errors(bio_err);
225         goto end;
226     }
227
228     out = bio_open_owner(outfile, "w", private);
229     if (out == NULL)
230         goto end;
231
232     if (text) {
233         assert(private);
234         if (!DSA_print(out, dsa, 0)) {
235             perror(outfile);
236             ERR_print_errors(bio_err);
237             goto end;
238         }
239     }
240
241     if (modulus) {
242         BIO_printf(out, "Public Key=");
243         BN_print(out, dsa->pub_key);
244         BIO_printf(out, "\n");
245     }
246
247     if (noout) {
248         ret = 0;
249         goto end;
250     }
251     BIO_printf(bio_err, "writing DSA key\n");
252     if (outformat == FORMAT_ASN1) {
253         if (pubin || pubout)
254             i = i2d_DSA_PUBKEY_bio(out, dsa);
255         else {
256             assert(private);
257             i = i2d_DSAPrivateKey_bio(out, dsa);
258         }
259     } else if (outformat == FORMAT_PEM) {
260         if (pubin || pubout)
261             i = PEM_write_bio_DSA_PUBKEY(out, dsa);
262         else {
263             assert(private);
264             i = PEM_write_bio_DSAPrivateKey(out, dsa, enc,
265                                             NULL, 0, NULL, passout);
266         }
267 # if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_NO_RC4)
268     } else if (outformat == FORMAT_MSBLOB || outformat == FORMAT_PVK) {
269         EVP_PKEY *pk;
270         pk = EVP_PKEY_new();
271         EVP_PKEY_set1_DSA(pk, dsa);
272         if (outformat == FORMAT_PVK) {
273             assert(private);
274             i = i2b_PVK_bio(out, pk, pvk_encr, 0, passout);
275         }
276         else if (pubin || pubout)
277             i = i2b_PublicKey_bio(out, pk);
278         else {
279             assert(private);
280             i = i2b_PrivateKey_bio(out, pk);
281         }
282         EVP_PKEY_free(pk);
283 # endif
284     } else {
285         BIO_printf(bio_err, "bad output format specified for outfile\n");
286         goto end;
287     }
288     if (i <= 0) {
289         BIO_printf(bio_err, "unable to write private key\n");
290         ERR_print_errors(bio_err);
291         goto end;
292     }
293     ret = 0;
294  end:
295     BIO_free_all(out);
296     DSA_free(dsa);
297     OPENSSL_free(passin);
298     OPENSSL_free(passout);
299     return (ret);
300 }
301 #else                           /* !OPENSSL_NO_DSA */
302
303 # if PEDANTIC
304 static void *dummy = &dummy;
305 # endif
306
307 #endif