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