An implementation of the SHA-1 cryptographic hash algorithm.
To use this module, first create a Sha1 object using the Sha1 constructor,
then feed it an input message using the input or input_str methods,
which may be called any number of times; they will buffer the input until
there is enough to call the block algorithm.
After the entire input has been fed to the hash read the result using
the result or result_str methods. The first will return bytes, and
the second will return a String object of the same bytes represented
in hexadecimal form.
The Sha1 object may be reused to create multiple hashes by calling
the reset() method. These traits are implemented by all hash digest
algorithms that implement the Digest trait. An example of use is:
use ;
// create a Sha1 object
let mut sh = default;
// write input message
sh.input;
// read hash digest in the form of GenericArray which is in this case
// equivalent to [u8; 20]
let output = sh.result;
assert_eq!;
Mathematics
The mathematics of the SHA-1 algorithm are quite interesting. In its definition, The SHA-1 algorithm uses:
- 1 binary operation on bit-arrays:
- "exclusive or" (XOR)
- 2 binary operations on integers:
- "addition" (ADD)
- "rotate left" (ROL)
- 3 ternary operations on bit-arrays:
- "choose" (CH)
- "parity" (PAR)
- "majority" (MAJ)
Some of these functions are commonly found in all hash digest algorithms, but some, like "parity" is only found in SHA-1.