How to verify a checksum
| Note |
|---|
Unfortunately, the potential one-line solution: |
calculate the checksum:
| No Format |
|---|
linux$ sha1sum commons-logging-1.0.4.jar f029a2aefe2b3e1517573c580f948caac31b1056 *commons-logging-1.0.4.jar |
or
| No Format |
|---|
macorlinux$ openssl dgst -sha1 commons-logging-1.0.4.jar SHA1(/Maven 2 Repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar)= f029a2aefe2b3e1517573c580f948caac31b1056 |
| Info | ||
|---|---|---|
| ||
If you're on Windows, Cygwin has the md5 and sha1 utilities: http://www.cygwin.com |
then compare with the externally supplied checksum:
| No Format |
|---|
$ cat commons-logging-1.0.4.jar.sha1 f029a2aefe2b3e1517573c580f948caac31b1056 |
