crypt.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sat, 13 Dec 2008 17:58:16 +0100
changeset 23 7acfc5eda7ed
parent 9 c3fecc82ade6
child 27 81a574d60c15
permissions -rw-r--r--
this seems to be the proper way under ms, but it won't work under wine committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * test/demos/crypt.c
 * Copyright (C) 2008 Markus Broeker
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main (int argc, char **argv)
{
    char *data;
    int i;

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

    /*
     * Its already allocated
     */
    data = argv[1];

    for (i = 0; data[i]; i++)
        data[i] = data[i] + 1;

    printf ("EnCrypted Data: %s\n", data);

    for (i = 0; data[i]; i++)
        data[i] = data[i] - 1;

    printf ("DeCrypted Data: %s\n", data);

    return EXIT_SUCCESS;
}