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