Skip to content

Instantly share code, notes, and snippets.

View CWoople's full-sized avatar

CWoople

View GitHub Profile
@CWoople
CWoople / md5.c
Created September 26, 2019 20:19 — forked from creationix/md5.c
/*
* Simple MD5 implementation
*
* Compile with: gcc -o md5 -O3 -lm md5.c
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
@CWoople
CWoople / md5.c
Created September 26, 2019 20:19 — forked from creationix/md5.c
/*
* Simple MD5 implementation
*
* Compile with: gcc -o md5 -O3 -lm md5.c
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>