Digest::MultiHash(3pm) | User Contributed Perl Documentation | Digest::MultiHash(3pm) |
Digest::MultiHash - XOR based, variable width multiplexing of hashes (a generalized Digest::SV1).
use Digest::MultiHash; my $d = Digest::Multihash->new( width => 16, # bytes hashs => ["SHA-512", "Whirlpool"], # see below for arbitrary arguments ); $d->add($data); print $d->hexdigest;
This class inherits from Digest::base, and provides generalized digest multiplexing.
It will multiplex all calls to "add" to all of it's sub digest objects. Likewise, when the final digest is extracted the digests will be extracted and then XOR'd over eachother according to "width".
"width" will default to the width of the first hash if unspecified.
"hashes" defaults to "SHA-1" for compatibility reasons.
This module is useful for generating keys from passphrases, by supplying the desired width and simply making sure there is enough data from the combined hashes.
See Digest for the complete API. This module inherits from Digest::base.
If the result is not aligned on "width" the result will not be truncated. The shorter string will still be XOR'd with the hash, even if this only affects part of the result.
If there are not at least "width" bytes of data in the output of the combined hashes an error is thrown.
The list of hashes cannot be changed after construction.
Digest, Digest::SV1, Digest::SHA1
2009-10-19 | perl v5.18.1 |