|
Digest::FNV - Perl interface to FNV hash |
Digest::FNV - Perl interface to FNV hash
use Digest::FNV qw(fnv);
my $hash = fnv("abc123");
Digest::FNV is an implementation for the 32-bit version of Fowler/Noll/Vo
hashing algorithm which allows variable length input strings to be quickly hashed into unsigned integer values.
For more information about this hash, please visit http://www.isthe.com/chongo/tech/comp/fnv/.
Support for the 64-bit version is not included in this release.
The implementation in C is obtained from the source code released on public domain by one of the authors - Landon Curt Noll.
the Digest::FNV::PurePerl manpage, the Digest::Pearson manpage, the Digest::DJB manpage.
Please send your comments to tnguyen@cpan.org.
|
Digest::FNV - Perl interface to FNV hash |