Fixes for 'no-hw' combined with 'no-SOME_CIPHER'.
[openssl.git] / apps / dgst.c
1 /* apps/dgst.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  * 
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  * 
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  * 
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from 
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  * 
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  * 
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #include <stdio.h>
60 #include <string.h>
61 #include <stdlib.h>
62 #include "apps.h"
63 #include <openssl/bio.h>
64 #include <openssl/err.h>
65 #include <openssl/evp.h>
66 #include <openssl/objects.h>
67 #include <openssl/x509.h>
68 #include <openssl/pem.h>
69
70 #undef BUFSIZE
71 #define BUFSIZE 1024*8
72
73 #undef PROG
74 #define PROG    dgst_main
75
76 void do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
77                 EVP_PKEY *key, unsigned char *sigin, int siglen);
78
79 int MAIN(int, char **);
80
81 int MAIN(int argc, char **argv)
82         {
83         ENGINE *e = NULL;
84         unsigned char *buf=NULL;
85         int i,err=0;
86         const EVP_MD *md=NULL,*m;
87         BIO *in=NULL,*inp;
88         BIO *bmd=NULL;
89         BIO *out = NULL;
90         const char *name;
91 #define PROG_NAME_SIZE  16
92         char pname[PROG_NAME_SIZE];
93         int separator=0;
94         int debug=0;
95         int keyform=FORMAT_PEM;
96         const char *outfile = NULL, *keyfile = NULL;
97         const char *sigfile = NULL, *randfile = NULL;
98         int out_bin = -1, want_pub = 0, do_verify = 0;
99         EVP_PKEY *sigkey = NULL;
100         unsigned char *sigbuf = NULL;
101         int siglen = 0;
102         char *engine=NULL;
103
104         apps_startup();
105
106         if ((buf=(unsigned char *)OPENSSL_malloc(BUFSIZE)) == NULL)
107                 {
108                 BIO_printf(bio_err,"out of memory\n");
109                 goto end;
110                 }
111         if (bio_err == NULL)
112                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
113                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
114
115         if (!load_config(bio_err, NULL))
116                 goto end;
117
118         /* first check the program name */
119         program_name(argv[0],pname,PROG_NAME_SIZE);
120
121         md=EVP_get_digestbyname(pname);
122
123         argc--;
124         argv++;
125         while (argc > 0)
126                 {
127                 if ((*argv)[0] != '-') break;
128                 if (strcmp(*argv,"-c") == 0)
129                         separator=1;
130                 else if (strcmp(*argv,"-rand") == 0)
131                         {
132                         if (--argc < 1) break;
133                         randfile=*(++argv);
134                         }
135                 else if (strcmp(*argv,"-out") == 0)
136                         {
137                         if (--argc < 1) break;
138                         outfile=*(++argv);
139                         }
140                 else if (strcmp(*argv,"-sign") == 0)
141                         {
142                         if (--argc < 1) break;
143                         keyfile=*(++argv);
144                         }
145                 else if (strcmp(*argv,"-verify") == 0)
146                         {
147                         if (--argc < 1) break;
148                         keyfile=*(++argv);
149                         want_pub = 1;
150                         do_verify = 1;
151                         }
152                 else if (strcmp(*argv,"-prverify") == 0)
153                         {
154                         if (--argc < 1) break;
155                         keyfile=*(++argv);
156                         do_verify = 1;
157                         }
158                 else if (strcmp(*argv,"-signature") == 0)
159                         {
160                         if (--argc < 1) break;
161                         sigfile=*(++argv);
162                         }
163                 else if (strcmp(*argv,"-keyform") == 0)
164                         {
165                         if (--argc < 1) break;
166                         keyform=str2fmt(*(++argv));
167                         }
168                 else if (strcmp(*argv,"-engine") == 0)
169                         {
170                         if (--argc < 1) break;
171                         engine= *(++argv);
172                         }
173                 else if (strcmp(*argv,"-hex") == 0)
174                         out_bin = 0;
175                 else if (strcmp(*argv,"-binary") == 0)
176                         out_bin = 1;
177                 else if (strcmp(*argv,"-d") == 0)
178                         debug=1;
179                 else if ((m=EVP_get_digestbyname(&((*argv)[1]))) != NULL)
180                         md=m;
181                 else
182                         break;
183                 argc--;
184                 argv++;
185                 }
186
187         if (md == NULL)
188                 md=EVP_md5();
189
190         if(do_verify && !sigfile) {
191                 BIO_printf(bio_err, "No signature to verify: use the -signature option\n");
192                 err = 1; 
193                 goto end;
194         }
195
196         if ((argc > 0) && (argv[0][0] == '-')) /* bad option */
197                 {
198                 BIO_printf(bio_err,"unknown option '%s'\n",*argv);
199                 BIO_printf(bio_err,"options are\n");
200                 BIO_printf(bio_err,"-c              to output the digest with separating colons\n");
201                 BIO_printf(bio_err,"-d              to output debug info\n");
202                 BIO_printf(bio_err,"-hex            output as hex dump\n");
203                 BIO_printf(bio_err,"-binary         output in binary form\n");
204                 BIO_printf(bio_err,"-sign   file    sign digest using private key in file\n");
205                 BIO_printf(bio_err,"-verify file    verify a signature using public key in file\n");
206                 BIO_printf(bio_err,"-prverify file  verify a signature using private key in file\n");
207                 BIO_printf(bio_err,"-keyform arg    key file format (PEM or ENGINE)\n");
208                 BIO_printf(bio_err,"-signature file signature to verify\n");
209                 BIO_printf(bio_err,"-binary         output in binary form\n");
210                 BIO_printf(bio_err,"-engine e       use engine e, possibly a hardware device.\n");
211
212                 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm (default)\n",
213                         LN_md5,LN_md5);
214                 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
215                         LN_md4,LN_md4);
216                 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
217                         LN_md2,LN_md2);
218                 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
219                         LN_sha1,LN_sha1);
220                 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
221                         LN_sha,LN_sha);
222                 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
223                         LN_mdc2,LN_mdc2);
224                 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
225                         LN_ripemd160,LN_ripemd160);
226                 err=1;
227                 goto end;
228                 }
229
230         e = setup_engine(bio_err, engine, 0);
231
232         in=BIO_new(BIO_s_file());
233         bmd=BIO_new(BIO_f_md());
234         if (debug)
235                 {
236                 BIO_set_callback(in,BIO_debug_callback);
237                 /* needed for windows 3.1 */
238                 BIO_set_callback_arg(in,bio_err);
239                 }
240
241         if ((in == NULL) || (bmd == NULL))
242                 {
243                 ERR_print_errors(bio_err);
244                 goto end;
245                 }
246
247         if(out_bin == -1) {
248                 if(keyfile) out_bin = 1;
249                 else out_bin = 0;
250         }
251
252         if(randfile)
253                 app_RAND_load_file(randfile, bio_err, 0);
254
255         if(outfile) {
256                 if(out_bin)
257                         out = BIO_new_file(outfile, "wb");
258                 else    out = BIO_new_file(outfile, "w");
259         } else {
260                 out = BIO_new_fp(stdout, BIO_NOCLOSE);
261 #ifdef OPENSSL_SYS_VMS
262                 {
263                 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
264                 out = BIO_push(tmpbio, out);
265                 }
266 #endif
267         }
268
269         if(!out) {
270                 BIO_printf(bio_err, "Error opening output file %s\n", 
271                                         outfile ? outfile : "(stdout)");
272                 ERR_print_errors(bio_err);
273                 goto end;
274         }
275
276         if(keyfile)
277                 {
278                 if (want_pub)
279                         sigkey = load_pubkey(bio_err, keyfile, keyform, NULL,
280                                 e, "key file");
281                 else
282                         sigkey = load_key(bio_err, keyfile, keyform, NULL,
283                                 e, "key file");
284                 if (!sigkey)
285                         {
286                         /* load_[pub]key() has already printed an appropriate
287                            message */
288                         goto end;
289                         }
290                 }
291
292         if(sigfile && sigkey) {
293                 BIO *sigbio;
294                 sigbio = BIO_new_file(sigfile, "rb");
295                 siglen = EVP_PKEY_size(sigkey);
296                 sigbuf = OPENSSL_malloc(siglen);
297                 if(!sigbio) {
298                         BIO_printf(bio_err, "Error opening signature file %s\n",
299                                                                 sigfile);
300                         ERR_print_errors(bio_err);
301                         goto end;
302                 }
303                 siglen = BIO_read(sigbio, sigbuf, siglen);
304                 BIO_free(sigbio);
305                 if(siglen <= 0) {
306                         BIO_printf(bio_err, "Error reading signature file %s\n",
307                                                                 sigfile);
308                         ERR_print_errors(bio_err);
309                         goto end;
310                 }
311         }
312                 
313
314
315         /* we use md as a filter, reading from 'in' */
316         BIO_set_md(bmd,md);
317         inp=BIO_push(bmd,in);
318
319         if (argc == 0)
320                 {
321                 BIO_set_fp(in,stdin,BIO_NOCLOSE);
322                 do_fp(out, buf,inp,separator, out_bin, sigkey, sigbuf, siglen);
323                 }
324         else
325                 {
326                 name=OBJ_nid2sn(md->type);
327                 for (i=0; i<argc; i++)
328                         {
329                         if (BIO_read_filename(in,argv[i]) <= 0)
330                                 {
331                                 perror(argv[i]);
332                                 err++;
333                                 continue;
334                                 }
335                         if(!out_bin) BIO_printf(out, "%s(%s)= ",name,argv[i]);
336                         do_fp(out, buf,inp,separator, out_bin, sigkey, 
337                                                                 sigbuf, siglen);
338                         (void)BIO_reset(bmd);
339                         }
340                 }
341 end:
342         if (buf != NULL)
343                 {
344                 memset(buf,0,BUFSIZE);
345                 OPENSSL_free(buf);
346                 }
347         if (in != NULL) BIO_free(in);
348         BIO_free_all(out);
349         EVP_PKEY_free(sigkey);
350         if(sigbuf) OPENSSL_free(sigbuf);
351         if (bmd != NULL) BIO_free(bmd);
352         apps_shutdown();
353         EXIT(err);
354         }
355
356 void do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
357                         EVP_PKEY *key, unsigned char *sigin, int siglen)
358         {
359         int len;
360         int i;
361
362         for (;;)
363                 {
364                 i=BIO_read(bp,(char *)buf,BUFSIZE);
365                 if (i <= 0) break;
366                 }
367         if(sigin)
368                 {
369                 EVP_MD_CTX *ctx;
370                 BIO_get_md_ctx(bp, &ctx);
371                 i = EVP_VerifyFinal(ctx, sigin, (unsigned int)siglen, key); 
372                 if(i > 0) BIO_printf(out, "Verified OK\n");
373                 else if(i == 0) BIO_printf(out, "Verification Failure\n");
374                 else
375                         {
376                         BIO_printf(bio_err, "Error Verifying Data\n");
377                         ERR_print_errors(bio_err);
378                         }
379                 return;
380                 }
381         if(key)
382                 {
383                 EVP_MD_CTX *ctx;
384                 BIO_get_md_ctx(bp, &ctx);
385                 if(!EVP_SignFinal(ctx, buf, (unsigned int *)&len, key)) 
386                         {
387                         BIO_printf(bio_err, "Error Signing Data\n");
388                         ERR_print_errors(bio_err);
389                         return;
390                         }
391                 }
392         else
393                 len=BIO_gets(bp,(char *)buf,BUFSIZE);
394
395         if(binout) BIO_write(out, buf, len);
396         else 
397                 {
398                 for (i=0; i<len; i++)
399                         {
400                         if (sep && (i != 0))
401                                 BIO_printf(out, ":");
402                         BIO_printf(out, "%02x",buf[i]);
403                         }
404                 BIO_printf(out, "\n");
405                 }
406         }
407