summaryrefslogtreecommitdiffstats
path: root/tools/md5/src/md5.c
blob: 81ae359dabdc598e3d15b47d6d14d81511494d58 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <stdio.h>
#include <axutil_string.h>
#include <axutil_md5.h>

static void md5_file (char *filename, const axutil_env_t * env)
{
    FILE * file;
    axutil_md5_ctx_t * context;
    int len, i;
    unsigned char buffer[1024], digest[16];

    if ((file = fopen (filename, "rb")) == NULL)
    {
        printf ("%s can't be opened\n", filename);
    }
    else
    {
        context = axutil_md5_ctx_create(env);
        while ((len = fread (buffer, 1, 1024, file)) != 0)
        {
            axutil_md5_update(context, env, buffer, len);
        }
        axutil_md5_final(context, env, digest);
        axutil_md5_ctx_free(context, env);
        fclose (file);
        printf ("MD5 (%s) = ", filename);
        for (i = 0; i < 16; i++)
        {
            printf ("%02x", digest[i]);
        }
        printf ("\n");
    }
}

int
main(
    int argc,
    char **argv)
{
    const axutil_env_t *env = NULL;

    env = axutil_env_create_all("md5.log", AXIS2_LOG_LEVEL_DEBUG);
    if (argc > 1)
    {
        if (axutil_strcmp(argv[1], "-h") == 0)
        {
            printf("Usage : %s [file_name]\n", argv[0]);
            printf("use -h for help\n");
            return 0;
        }
        else
        {
            md5_file(argv[1], env);
        }
    }
    if (env)
    {
        axutil_env_free((axutil_env_t *) env);
        env = NULL;
    }
    return 0;
}