/*********************************************************************
* Filename: md5.h
* Author: Brad Conte (brad AT bradconte.com)
* Source: https://github.com/B-Con/crypto-algorithms
* License: Public Domain
* Details: Defines the API for the corresponding MD5 implementation.
*********************************************************************/
/*************************** HEADER FILES ***************************/
/****************************** MACROS ******************************/
/**************************** DATA TYPES ****************************/
typedef unsigned char BYTE; // 8-bit byte
typedef unsigned int WORD; // 32-bit word, change to "long" for 16-bit machines
typedef struct MD5_CTX;
/*********************** FUNCTION DECLARATIONS **********************/
void* ;
void ;
int ;
// MD5_H