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