Skip to content

Instantly share code, notes, and snippets.

@herrbischoff
Last active August 29, 2015 14:18
Show Gist options
  • Save herrbischoff/d31940f16f47b70e755e to your computer and use it in GitHub Desktop.
Save herrbischoff/d31940f16f47b70e755e to your computer and use it in GitHub Desktop.
How to generate MD5 SHA-1 SHA-256

Calculate MD5 checksum:

md5 /tmp/1.iso

Calculate SHA-1 checksum:

shasum -a 1 /tmp/1.iso

Calculate SHA-256 checksum:

shasum -a 256 /tmp/1.iso

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment