Skip to content

Instantly share code, notes, and snippets.

View zabeh-nasiri's full-sized avatar

Zabeh Nasiri zabeh-nasiri

View GitHub Profile
@zabeh-nasiri
zabeh-nasiri / AES.c
Created November 27, 2015 11:22 — forked from bricef/AES.c
A simple example of using AES encryption in Java and C.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/*
* MCrypt API available online:
* http://linux.die.net/man/3/mcrypt
*/
#include <mcrypt.h>