Skip to content

Instantly share code, notes, and snippets.

View bsteel364's full-sized avatar
πŸ‘¨β€πŸ’»

Brandon Steel bsteel364

πŸ‘¨β€πŸ’»
  • PTC
  • Morgantown, WV
  • 03:38 (UTC -04:00)
View GitHub Profile
@bsteel364
bsteel364 / md5.c
Created April 23, 2019 17:17 — 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>