Skip to content

Instantly share code, notes, and snippets.

View ykhorzon's full-sized avatar
🎼
Play with melody

ykhorizon ykhorzon

🎼
Play with melody
View GitHub Profile
@bricef
bricef / AES.c
Last active September 13, 2025 16:49
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>