Bug 136153 - Need better way to validate checksums
Summary: Need better way to validate checksums
Keywords:
Status: CLOSED WONTFIX
Alias: None
Product: Fedora
Classification: Fedora
Component: coreutils
Version: 3
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Tim Waugh
QA Contact: Bill Nottingham
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2004-10-18 12:17 UTC by Need Real Name
Modified: 2014-03-17 02:49 UTC (History)
1 user (show)

Fixed In Version:
Doc Type: Enhancement
Doc Text:
Clone Of:
Environment:
Last Closed: 2004-12-03 12:40:17 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Need Real Name 2004-10-18 12:17:19 UTC
From Bugzilla Helper:
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; 
SV1; .NET CLR 1.1.4322)

Description of problem:
The md5sum and sha1sum programs both take a -c option to have them 
check that a file matches its checksum.

md5sum will return nothing if the checksum is okay, otherwise it will 
complain.
sha1sum will print a message saying "OK" if it's checksum is okay, 
otherwise it will also complain.

Both programs only seem to take notice of their own checksums, i.e. 
when passed a file using -c, sha1sum ignores MD5sums, and md5sum 
ignores SHA1sums.
I'm not sure if this is by design, but if it is, this enables 
multiple checksum formats to be stored in the same file.

What would be nice if there was a wrapper command that ran both 
md5sum and sha1sum on a given file, and complains if any checksums 
are bad.

This could address the issue of a checksumming algorithm being 
compromised.

Version-Release number of selected component (if applicable):


How reproducible:
Always

Steps to Reproduce:
x

Additional info:

Comment 1 Tim Waugh 2004-12-03 12:40:17 UTC
Is it really worth a separate wrapper script to do this?

#!/bin/bash
md5sum "$@"
sha1sum "$@"



Note You need to log in before you can comment on or make changes to this bug.