Sleuth Kit to make md5 of all files in a partition

Im using Sleuth Kit to list all files in a partition, however I also need to create a hash of all the files. How can I do this?

This is what I have now:

fls -p -r -o 1024 image.dd > all_files.txt

tsk_gettimes can produce MD5 hashes if run with the -m flag.

Thank you apriestman!