Skip to content

Instantly share code, notes, and snippets.

View Pepe424's full-sized avatar
💭
At school

Pepa Pepe424

💭
At school
  • Valeo
  • Ostrava
View GitHub Profile
/*
* Simple MD5 implementation
*
* Compile with: gcc -o md5 md5.c
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <math.h>