NAME
Digest::Groestl - Perl interface to the Groestl digest algorithm
SYNOPSIS
# Functional interface
use Digest::Groestl qw(groestl_256 groestl_256_hex groestl_256_base64);
$digest = groestl_256($data);
$digest = groestl_256_hex($data);
$digest = groestl_256_base64($data);
# Object-oriented interface
use Digest::Groestl;
$ctx = Digest::Groestl->new(256);
$ctx->add($data);
$ctx->addfile(*FILE);
$digest = $ctx->digest;
$digest = $ctx->hexdigest;
$digest = $ctx->b64digest;
DESCRIPTION
The Digest::Groestl
module provides an interface to the Groestl message digest algorithm. Groestl is a candidate in the NIST SHA-3 competition.
This interface follows the conventions set forth by the Digest
module.
FUNCTIONS
The following functions are provided by the Digest::Groestl
module. None of these functions are exported by default.
groestl_224($data, ...)
groestl_256($data, ...)
groestl_384($data, ...)
groestl_512($data, ...)
Logically joins the arguments into a single string, and returns its Groestl digest encoded as a binary string.
groestl_224_hex($data, ...)
groestl_256_hex($data, ...)
groestl_384_hex($data, ...)
groestl_512_hex($data, ...)
Logically joins the arguments into a single string, and returns its Groestl digest encoded as a hexadecimal string.
groestl_224_base64($data, ...)
groestl_256_base64($data, ...)
groestl_384_base64($data, ...)
groestl_512_base64($data, ...)
Logically joins the arguments into a single string, and returns its Groestl digest encoded as a Base64 string, without any trailing padding.
METHODS
The object-oriented interface to Digest::Groestl
is identical to that described by Digest
, except for the following:
new
$groestl = Digest::Groestl->new(256)
The constructor requires the algorithm to be specified. It must be one of: 224, 256, 384, 512.
algorithm
hashsize
Returns the algorithm used by the object.
SEE ALSO
http://en.wikipedia.org/wiki/NIST_hash_function_competition
http://www.saphir2.com/sphlib/
REQUESTS AND BUGS
Please report any bugs or feature requests to http://rt.cpan.org/Public/Bug/Report.html?Digest-Groestl. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Digest::Groestl
You can also look for information at:
GitHub Source Repository
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
RT: CPAN's request tracker
http://rt.cpan.org/Public/Dist/Display.html?Name=Digest-Groestl
Search CPAN
COPYRIGHT AND LICENSE
Copyright (C) 2010-2011 gray <gray at cpan.org>, all rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
AUTHOR
gray, <gray at cpan.org>