6

Possible Duplicate:
Is there a built-in method for computing a sha1 or md5 hash in windows 7?

If I am running Windows 7 or a distribution of Linux how can I compute MD5 or SHA hashes without downloading a specific tool or application that can do so? Are there any tools that come with Windows 7 or distributions of Linux? The Linux distribution of interest would be Debian and Ubuntu.

PeanutsMonkey
  • 8,900
  • 36
  • 90
  • 133

2 Answers2

10

md5sum, sha1sum, sha256sum, etc. are all standard in Linux distros. They're part of the required coreutils package on Debian and Ubuntu, so if you've installed one of those, you already have them. In other distros you might have to install them, but I don't really see any way around that besides writing them yourself, which I don't think you want to do.

On Windows, I don't know of any native hashing tools. You'll probably have to install something. You can install Cygwin, which also includes md5sum and sha*sum in its required coreutils package, or for a free GUI tool there's e.g. md5summer.

Andrew Schulman
  • 3,076
  • 1
  • 22
  • 20
2

I'd suggest Cygwin as above, but OpenSSL tools can perform the hashes.  See the OpenSSL website.

Rich Homolka
  • 31,057
  • 6
  • 55
  • 80