xref: /xnu-11417.140.69/tools/tests/perf_index/md5.h (revision 43a90889846e00bfb5cf1d255cdc0a701a1e05a4)
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