Added README.md

This commit is contained in:
llsth 2015-06-11 22:09:21 +02:00
parent 0fbc674094
commit 770fcff0c8
1 changed files with 18 additions and 0 deletions

18
README.md Normal file
View File

@ -0,0 +1,18 @@
Introduction
------------
sha is a simple program that hashes files. It uses the National
Institute of Standards and Technology's Secure Hash Algorithm.
It can use SHA-1, SHA-256, SHA-384, or SHA-512, which generate
respectively, hashes of 160, 256, 384, or 512 bits. sha can be
used in scripts to do, for example, file integrity checking.
Using sha is simple. Just pass the names of one or more files on
the command line.
You may want to perform a sanity check on sha before relying on
it. A program called "shatest" is built along with sha. If you
run shatest, it will display the results of running the various
SHA algorithms on a set of known test vectors. If the resultant
hash matches what is expected, "PASS" will be displayed. Otherwise
it will display "FAIL."