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