My program is generating files for publication over the Internet and I want it to provide an MD5 hash of the file at the time that the file is generated. This will enable people who download it to generate an MD5 hash of the downloaded file and compare it to the original hash. If the hashes match they can be confident that they have got the same file that was published and that its contents have not been compromised in any way.
I really want the MD5 Hash to be generated from my code and to avoid having to spawn out to a seperate hashing utility or to have an external process hashing the files.
Submit a new solution to this problem >