Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) A stream editorProduce verbose warning diagnostics (Berikutnya)
Utilities

Print or Check SHA Checksums

Daftar Isi

NAME

shasum - Print or Check SHA Checksums

SYNOPSIS

  1. Usage: shasum [OPTION]... [FILE]...
  2. Print or check SHA checksums.
  3. With no FILE, or when FILE is -, read standard input.
  4. -a, --algorithm 1 (default), 224, 256, 384, 512, 512224, 512256
  5. -b, --binary read in binary mode
  6. -c, --check read SHA sums from the FILEs and check them
  7. -t, --text read in text mode (default)
  8. -p, --portable read in portable mode
  9. produces same digest on Windows/Unix/Mac
  10. -0, --01 read in BITS mode
  11. ASCII '0' interpreted as 0-bit,
  12. ASCII '1' interpreted as 1-bit,
  13. all other characters ignored
  14. The following two options are useful only when verifying checksums:
  15. -s, --status don't output anything, status code shows success
  16. -w, --warn warn about improperly formatted checksum lines
  17. -h, --help display this help and exit
  18. -v, --version output version information and exit
  19. When verifying SHA-512/224 or SHA-512/256 checksums, indicate the
  20. algorithm explicitly using the -a option, e.g.
  21. shasum -a 512224 -c checksumfile
  22. The sums are computed as described in FIPS-180-4. When checking, the
  23. input should be a former output of this program. The default mode is to
  24. print a line with checksum, a character indicating type (`*' for binary,
  25. ` ' for text, `?' for portable, `^' for BITS), and name for each FILE.
  26. Report shasum bugs to [email protected]

DESCRIPTION

Running shasum is often the quickest way to compute SHA messagedigests. The user simply feeds data to the script through files orstandard input, and then collects the results from standard output.

The following command shows how to compute digests for typical inputssuch as the NIST test vector "abc":

  1. perl -e "print qq(abc)" | shasum

Or, if you want to use SHA-256 instead of the default SHA-1, simply say:

  1. perl -e "print qq(abc)" | shasum -a 256

Since shasum mimics the behavior of the combined GNU sha1sum,sha224sum, sha256sum, sha384sum, and sha512sum programs,you can install this script as a convenient drop-in replacement.

Unlike the GNU programs, shasum encompasses the full SHA standard byallowing partial-byte inputs. This is accomplished through the BITSoption (-0). The following example computes the SHA-224 digest ofthe 7-bit message 0001100:

  1. perl -e "print qq(0001100)" | shasum -0 -a 224

AUTHOR

Copyright (c) 2003-2012 Mark Shelor <[email protected]>.

SEE ALSO

shasum is implemented using the Perl module Digest::SHA orDigest::SHA::PurePerl.

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) A stream editorProduce verbose warning diagnostics (Berikutnya)