70db078d36c099903657ebf77fface16ccd07a3e
[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 #include <openssl/hmac.h>
70
71 #undef BUFSIZE
72 #define BUFSIZE 1024*8
73
74 #undef PROG
75 #define PROG    dgst_main
76
77 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
78           EVP_PKEY *key, unsigned char *sigin, int siglen, const char *title,
79           const char *file,BIO *bmd,const char *hmac_key);
80
81 int MAIN(int, char **);
82
83 int MAIN(int argc, char **argv)
84         {
85         ENGINE *e = NULL;
86         unsigned char *buf=NULL;
87         int i,err=0;
88         const EVP_MD *md=NULL,*m;
89         BIO *in=NULL,*inp;
90         BIO *bmd=NULL;
91         BIO *out = NULL;
92         const char *name;
93 #define PROG_NAME_SIZE  39
94         char pname[PROG_NAME_SIZE+1];
95         int separator=0;
96         int debug=0;
97         int keyform=FORMAT_PEM;
98         const char *outfile = NULL, *keyfile = NULL;
99         const char *sigfile = NULL, *randfile = NULL;
100         int out_bin = -1, want_pub = 0, do_verify = 0;
101         EVP_PKEY *sigkey = NULL;
102         unsigned char *sigbuf = NULL;
103         int siglen = 0;
104         char *passargin = NULL, *passin = NULL;
105 #ifndef OPENSSL_NO_ENGINE
106         char *engine=NULL;
107 #endif
108         char *hmac_key=NULL;
109         STACK *sigopts = NULL;
110
111         apps_startup();
112
113         if ((buf=(unsigned char *)OPENSSL_malloc(BUFSIZE)) == NULL)
114                 {
115                 BIO_printf(bio_err,"out of memory\n");
116                 goto end;
117                 }
118         if (bio_err == NULL)
119                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
120                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
121
122         if (!load_config(bio_err, NULL))
123                 goto end;
124
125         /* first check the program name */
126         program_name(argv[0],pname,sizeof pname);
127
128         md=EVP_get_digestbyname(pname);
129
130         argc--;
131         argv++;
132         while (argc > 0)
133                 {
134                 if ((*argv)[0] != '-') break;
135                 if (strcmp(*argv,"-c") == 0)
136                         separator=1;
137                 else if (strcmp(*argv,"-rand") == 0)
138                         {
139                         if (--argc < 1) break;
140                         randfile=*(++argv);
141                         }
142                 else if (strcmp(*argv,"-out") == 0)
143                         {
144                         if (--argc < 1) break;
145                         outfile=*(++argv);
146                         }
147                 else if (strcmp(*argv,"-sign") == 0)
148                         {
149                         if (--argc < 1) break;
150                         keyfile=*(++argv);
151                         }
152                 else if (!strcmp(*argv,"-passin"))
153                         {
154                         if (--argc < 1)
155                                 break;
156                         passargin=*++argv;
157                         }
158                 else if (strcmp(*argv,"-verify") == 0)
159                         {
160                         if (--argc < 1) break;
161                         keyfile=*(++argv);
162                         want_pub = 1;
163                         do_verify = 1;
164                         }
165                 else if (strcmp(*argv,"-prverify") == 0)
166                         {
167                         if (--argc < 1) break;
168                         keyfile=*(++argv);
169                         do_verify = 1;
170                         }
171                 else if (strcmp(*argv,"-signature") == 0)
172                         {
173                         if (--argc < 1) break;
174                         sigfile=*(++argv);
175                         }
176                 else if (strcmp(*argv,"-keyform") == 0)
177                         {
178                         if (--argc < 1) break;
179                         keyform=str2fmt(*(++argv));
180                         }
181 #ifndef OPENSSL_NO_ENGINE
182                 else if (strcmp(*argv,"-engine") == 0)
183                         {
184                         if (--argc < 1) break;
185                         engine= *(++argv);
186                         e = setup_engine(bio_err, engine, 0);
187                         }
188 #endif
189                 else if (strcmp(*argv,"-hex") == 0)
190                         out_bin = 0;
191                 else if (strcmp(*argv,"-binary") == 0)
192                         out_bin = 1;
193                 else if (strcmp(*argv,"-d") == 0)
194                         debug=1;
195                 else if (!strcmp(*argv,"-hmac"))
196                         {
197                         if (--argc < 1)
198                                 break;
199                         hmac_key=*++argv;
200                         }
201                 else if (strcmp(*argv,"-sigopt") == 0)
202                         {
203                         if (--argc < 1)
204                                 break;
205                         if (!sigopts)
206                                 sigopts = sk_new_null();
207                         if (!sigopts || !sk_push(sigopts, *(++argv)))
208                                 break;
209                         }
210                 else if ((m=EVP_get_digestbyname(&((*argv)[1]))) != NULL)
211                         md=m;
212                 else
213                         break;
214                 argc--;
215                 argv++;
216                 }
217
218         if (md == NULL)
219                 md=EVP_md5();
220
221         if(do_verify && !sigfile) {
222                 BIO_printf(bio_err, "No signature to verify: use the -signature option\n");
223                 err = 1; 
224                 goto end;
225         }
226
227         if ((argc > 0) && (argv[0][0] == '-')) /* bad option */
228                 {
229                 BIO_printf(bio_err,"unknown option '%s'\n",*argv);
230                 BIO_printf(bio_err,"options are\n");
231                 BIO_printf(bio_err,"-c              to output the digest with separating colons\n");
232                 BIO_printf(bio_err,"-d              to output debug info\n");
233                 BIO_printf(bio_err,"-hex            output as hex dump\n");
234                 BIO_printf(bio_err,"-binary         output in binary form\n");
235                 BIO_printf(bio_err,"-sign   file    sign digest using private key in file\n");
236                 BIO_printf(bio_err,"-verify file    verify a signature using public key in file\n");
237                 BIO_printf(bio_err,"-prverify file  verify a signature using private key in file\n");
238                 BIO_printf(bio_err,"-keyform arg    key file format (PEM or ENGINE)\n");
239                 BIO_printf(bio_err,"-signature file signature to verify\n");
240                 BIO_printf(bio_err,"-sigopt nm:v    signature parameter\n");
241                 BIO_printf(bio_err,"-binary         output in binary form\n");
242 #ifndef OPENSSL_NO_ENGINE
243                 BIO_printf(bio_err,"-engine e       use engine e, possibly a hardware device.\n");
244 #endif
245
246                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm (default)\n",
247                         LN_md5,LN_md5);
248                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
249                         LN_md4,LN_md4);
250                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
251                         LN_md2,LN_md2);
252 #ifndef OPENSSL_NO_SHA
253                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
254                         LN_sha1,LN_sha1);
255 #ifndef OPENSSL_NO_SHA256
256                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
257                         LN_sha224,LN_sha224);
258                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
259                         LN_sha256,LN_sha256);
260 #endif
261 #ifndef OPENSSL_NO_SHA512
262                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
263                         LN_sha384,LN_sha384);
264                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
265                         LN_sha512,LN_sha512);
266 #endif
267 #endif
268                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
269                         LN_mdc2,LN_mdc2);
270                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
271                         LN_ripemd160,LN_ripemd160);
272 #ifndef OPENSSL_NO_WHIRLPOOL
273                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
274                         SN_whirlpool,SN_whirlpool);
275 #endif
276                 err=1;
277                 goto end;
278                 }
279
280         in=BIO_new(BIO_s_file());
281         bmd=BIO_new(BIO_f_md());
282         if (debug)
283                 {
284                 BIO_set_callback(in,BIO_debug_callback);
285                 /* needed for windows 3.1 */
286                 BIO_set_callback_arg(in,(char *)bio_err);
287                 }
288
289         if(!app_passwd(bio_err, passargin, NULL, &passin, NULL))
290                 {
291                 BIO_printf(bio_err, "Error getting password\n");
292                 goto end;
293                 }
294
295         if ((in == NULL) || (bmd == NULL))
296                 {
297                 ERR_print_errors(bio_err);
298                 goto end;
299                 }
300
301         if(out_bin == -1) {
302                 if(keyfile) out_bin = 1;
303                 else out_bin = 0;
304         }
305
306         if(randfile)
307                 app_RAND_load_file(randfile, bio_err, 0);
308
309         if(outfile) {
310                 if(out_bin)
311                         out = BIO_new_file(outfile, "wb");
312                 else    out = BIO_new_file(outfile, "w");
313         } else {
314                 out = BIO_new_fp(stdout, BIO_NOCLOSE);
315 #ifdef OPENSSL_SYS_VMS
316                 {
317                 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
318                 out = BIO_push(tmpbio, out);
319                 }
320 #endif
321         }
322
323         if(!out) {
324                 BIO_printf(bio_err, "Error opening output file %s\n", 
325                                         outfile ? outfile : "(stdout)");
326                 ERR_print_errors(bio_err);
327                 goto end;
328         }
329
330         if(keyfile)
331                 {
332                 if (want_pub)
333                         sigkey = load_pubkey(bio_err, keyfile, keyform, 0, NULL,
334                                 e, "key file");
335                 else
336                         sigkey = load_key(bio_err, keyfile, keyform, 0, passin,
337                                 e, "key file");
338                 if (!sigkey)
339                         {
340                         /* load_[pub]key() has already printed an appropriate
341                            message */
342                         goto end;
343                         }
344                 }
345
346         if (sigkey)
347                 {
348                 EVP_MD_CTX *mctx = NULL;
349                 EVP_PKEY_CTX *pctx = NULL;
350                 if (!BIO_get_md_ctx(bmd, &mctx))
351                         {
352                         BIO_printf(bio_err, "Error getting context\n");
353                         ERR_print_errors(bio_err);
354                         goto end;
355                         }
356                 if (!EVP_DigestSignInit(mctx, &pctx, md, e, sigkey))
357                         {
358                         BIO_printf(bio_err, "Error setting context\n");
359                         ERR_print_errors(bio_err);
360                         goto end;
361                         }
362                 if (sigopts)
363                         {
364                         char *sigopt;
365                         for (i = 0; i < sk_num(sigopts); i++)
366                                 {
367                                 sigopt = sk_value(sigopts, i);
368                                 if (pkey_ctrl_string(pctx, sigopt) <= 0)
369                                         {
370                                         BIO_printf(bio_err,
371                                                 "parameter error \"%s\"\n",
372                                                 sigopt);
373                                         ERR_print_errors(bio_err);
374                                         goto end;
375                                         }
376                                 }
377                         }
378                 }
379         /* we use md as a filter, reading from 'in' */
380         else if (!BIO_set_md(bmd,md))
381                 {
382                 BIO_printf(bio_err, "Error setting digest %s\n", pname);
383                 ERR_print_errors(bio_err);
384                 goto end;
385                 }
386
387         if(sigfile && sigkey) {
388                 BIO *sigbio;
389                 sigbio = BIO_new_file(sigfile, "rb");
390                 siglen = EVP_PKEY_size(sigkey);
391                 sigbuf = OPENSSL_malloc(siglen);
392                 if(!sigbio) {
393                         BIO_printf(bio_err, "Error opening signature file %s\n",
394                                                                 sigfile);
395                         ERR_print_errors(bio_err);
396                         goto end;
397                 }
398                 siglen = BIO_read(sigbio, sigbuf, siglen);
399                 BIO_free(sigbio);
400                 if(siglen <= 0) {
401                         BIO_printf(bio_err, "Error reading signature file %s\n",
402                                                                 sigfile);
403                         ERR_print_errors(bio_err);
404                         goto end;
405                 }
406         }
407         inp=BIO_push(bmd,in);
408
409         if (argc == 0)
410                 {
411                 BIO_set_fp(in,stdin,BIO_NOCLOSE);
412                 err=do_fp(out, buf,inp,separator, out_bin, sigkey, sigbuf,
413                           siglen,"","(stdin)",bmd,hmac_key);
414                 }
415         else
416                 {
417                 name=OBJ_nid2sn(md->type);
418                 for (i=0; i<argc; i++)
419                         {
420                         char *tmp,*tofree=NULL;
421                         int r;
422
423                         if (BIO_read_filename(in,argv[i]) <= 0)
424                                 {
425                                 perror(argv[i]);
426                                 err++;
427                                 continue;
428                                 }
429                         if(!out_bin)
430                                 {
431                                 size_t len = strlen(name)+strlen(argv[i])+(hmac_key ? 5 : 0)+5;
432                                 tmp=tofree=OPENSSL_malloc(len);
433                                 BIO_snprintf(tmp,len,"%s%s(%s)= ",
434                                                          hmac_key ? "HMAC-" : "",name,argv[i]);
435                                 }
436                         else
437                                 tmp="";
438                         r=do_fp(out,buf,inp,separator,out_bin,sigkey,sigbuf,
439                                 siglen,tmp,argv[i],bmd,hmac_key);
440                         if(r)
441                             err=r;
442                         if(tofree)
443                                 OPENSSL_free(tofree);
444                         (void)BIO_reset(bmd);
445                         }
446                 }
447 end:
448         if (buf != NULL)
449                 {
450                 OPENSSL_cleanse(buf,BUFSIZE);
451                 OPENSSL_free(buf);
452                 }
453         if (in != NULL) BIO_free(in);
454         if (passin)
455                 OPENSSL_free(passin);
456         BIO_free_all(out);
457         EVP_PKEY_free(sigkey);
458         if (sigopts)
459                 sk_free(sigopts);
460         if(sigbuf) OPENSSL_free(sigbuf);
461         if (bmd != NULL) BIO_free(bmd);
462         apps_shutdown();
463         OPENSSL_EXIT(err);
464         }
465
466 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
467           EVP_PKEY *key, unsigned char *sigin, int siglen, const char *title,
468           const char *file,BIO *bmd,const char *hmac_key)
469         {
470         unsigned int len;
471         int i;
472         EVP_MD_CTX *md_ctx;
473         HMAC_CTX hmac_ctx;
474
475         if (hmac_key)
476                 {
477                 EVP_MD *md;
478
479                 BIO_get_md(bmd,&md);
480                 HMAC_CTX_init(&hmac_ctx);
481                 HMAC_Init_ex(&hmac_ctx,hmac_key,strlen(hmac_key),md, NULL);
482                 BIO_get_md_ctx(bmd,&md_ctx);
483                 BIO_set_md_ctx(bmd,&hmac_ctx.md_ctx);
484                 }
485         for (;;)
486                 {
487                 i=BIO_read(bp,(char *)buf,BUFSIZE);
488                 if(i < 0)
489                         {
490                         BIO_printf(bio_err, "Read Error in %s\n",file);
491                         ERR_print_errors(bio_err);
492                         return 1;
493                         }
494                 if (i == 0) break;
495                 }
496         if(sigin)
497                 {
498                 EVP_MD_CTX *ctx;
499                 BIO_get_md_ctx(bp, &ctx);
500                 i = EVP_DigestVerifyFinal(ctx, sigin, (unsigned int)siglen); 
501                 if(i > 0)
502                         BIO_printf(out, "Verified OK\n");
503                 else if(i == 0)
504                         {
505                         BIO_printf(out, "Verification Failure\n");
506                         return 1;
507                         }
508                 else
509                         {
510                         BIO_printf(bio_err, "Error Verifying Data\n");
511                         ERR_print_errors(bio_err);
512                         return 1;
513                         }
514                 return 0;
515                 }
516         if(key)
517                 {
518                 EVP_MD_CTX *ctx;
519                 BIO_get_md_ctx(bp, &ctx);
520                 if(!EVP_DigestSignFinal(ctx, buf, (unsigned int *)&len)) 
521                         {
522                         BIO_printf(bio_err, "Error Signing Data\n");
523                         ERR_print_errors(bio_err);
524                         return 1;
525                         }
526                 }
527         else if(hmac_key)
528                 {
529                 HMAC_Final(&hmac_ctx,buf,&len);
530                 HMAC_CTX_cleanup(&hmac_ctx);
531                 }
532         else
533                 len=BIO_gets(bp,(char *)buf,BUFSIZE);
534
535         if(binout) BIO_write(out, buf, len);
536         else 
537                 {
538                 BIO_write(out,title,strlen(title));
539                 for (i=0; i<(int)len; i++)
540                         {
541                         if (sep && (i != 0))
542                                 BIO_printf(out, ":");
543                         BIO_printf(out, "%02x",buf[i]);
544                         }
545                 BIO_printf(out, "\n");
546                 }
547         if (hmac_key)
548                 {
549                 BIO_set_md_ctx(bmd,md_ctx);
550                 }
551         return 0;
552         }
553