md5.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Wed, 02 May 2012 20:51:14 +0200
changeset 165 f551b78c3eee
parent 162 fad55be2d07c
permissions -rw-r--r--
a bluetooth and a c++ demo committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * md5.c
 * Copyright (C) 2008 Markus Broeker
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <openssl/md5.h>

typedef unsigned char u_char;

int main (int argc, char **argv)
{
    char buffer[80];
    char text[80];

    unsigned char *md5_hash;
    char result[33];
    char byte[3];

    int i, j;

    if (argc != 2) {
        printf ("Usage: %s <text>\n", argv[0]);
        return EXIT_FAILURE;
    }

    /*
     * MD5 alters the input buffer
     */
    strncpy (buffer, argv[1], sizeof (buffer) - 1);
    strncpy (text, argv[1], sizeof (text) - 1);

    md5_hash = MD5 ((u_char *) buffer, strlen (buffer), NULL);

    for (i = 0, j = 0; i < 16; i++) {
        sprintf (byte, "%02x", (md5_hash[i] & 0xFF));
        result[j++] = byte[0];
        result[j++] = byte[1];
    }

    result[j] = 0;
    printf ("%s: %s\n", text, result);

    return EXIT_SUCCESS;
}