Hi @Travis, you can use the win_stat module for this purpose. This module basically abstracts all your file/folder information. It only works for windows though. Have a look at this example:
- name: Get MD5 checksum of a file
  win_stat:
    path: Path_to_file
    get_checksum: yes
    checksum_algorithm: md5
  register: md5_checksum