xref: /xnu-8020.140.41/tools/tests/perf_index/md5.h (revision 27b03b360a988dfd3dfdf34262bb0042026747cc)
1*27b03b36SApple OSS Distributions #ifndef __MD5_H_
2*27b03b36SApple OSS Distributions #define __MD5_H_
3*27b03b36SApple OSS Distributions 
4*27b03b36SApple OSS Distributions #include <stdint.h>
5*27b03b36SApple OSS Distributions 
6*27b03b36SApple OSS Distributions void md5_hash(uint8_t *message, uint64_t len, uint32_t *hash);
7*27b03b36SApple OSS Distributions 
8*27b03b36SApple OSS Distributions #endif
9