summaryrefslogtreecommitdiff
path: root/lib/md5sum.c
blob: 1743e7d0cfb2d0354fe6fe33dc2d6aeeeeed6e63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
 * md5sum.c	- Generate/check MD5 Message Digests
 *
 * Compile and link with md5.c.  If you don't have getopt() in your library
 * also include getopt.c.  For MSDOS you can also link with the wildcard
 * initialization function (wildargs.obj for Turbo C and setargv.obj for MSC)
 * so that you can use wildcards on the commandline.
 *
 * Written March 1993 by Branko Lankester
 * Modified June 1993 by Colin Plumb for altered md5.c.
 * Modified October 1995 by Erik Troan for RPM
 */
#include <errno.h>
#include <stdio.h>
#include <string.h>

#include "md5.h"
#include "messages.h"

int mdfile(char *fn, unsigned char *digest) {
    unsigned char buf[1024];
    unsigned char bindigest[16];
    FILE * fp;
    MD5_CTX ctx;
    int n;

    fp = fopen(fn, "r");
    if (!fp) {
	return 1;
    }

    MD5Init(&ctx);
    while ((n = fread(buf, 1, sizeof(buf), fp)) > 0)
	    MD5Update(&ctx, buf, n);
    MD5Final(bindigest, &ctx);
    if (ferror(fp)) {
	fclose(fp);
	return 1;
    }

    sprintf(digest, "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x"
                    "%02x%02x%02x%02x%02x",
	    bindigest[0],  bindigest[1],  bindigest[2],  bindigest[3],
	    bindigest[4],  bindigest[5],  bindigest[6],  bindigest[7],
	    bindigest[8],  bindigest[9],  bindigest[10], bindigest[11],
	    bindigest[12], bindigest[13], bindigest[14], bindigest[15]);

    fclose(fp);

    return 0;
}