1*1b191cb5SApple OSS Distributions #ifndef __MD5_H_ 2*1b191cb5SApple OSS Distributions #define __MD5_H_ 3*1b191cb5SApple OSS Distributions 4*1b191cb5SApple OSS Distributions #include <stdint.h> 5*1b191cb5SApple OSS Distributions 6*1b191cb5SApple OSS Distributions void md5_hash(uint8_t *message, uint64_t len, uint32_t *hash); 7*1b191cb5SApple OSS Distributions 8*1b191cb5SApple OSS Distributions #endif 9