Digest::GOST - Perl interface to the GOST R 34.11-94 digest algorithm |
Digest::GOST - Perl interface to the GOST R 34.11-94 digest algorithm
# Functional interface use Digest::GOST qw(gost gost_hex gost_base64);
$digest = gost($data); $digest = gost_hex($data); $digest = gost_base64($data);
# Object-oriented interface use Digest::GOST;
$ctx = Digest::GOST->new(256);
$ctx->add($data); $ctx->addfile(*FILE);
$digest = $ctx->digest; $digest = $ctx->hexdigest; $digest = $ctx->b64digest;
The Digest::GOST
module provides an interface to the GOST R 34.11-94
message digest algorithm.
This interface follows the conventions set forth by the Digest
module.
This module uses the default ``test'' parameters. To use the CryptoPro
parameters, use Digest::GOST::CryptoPro
.
The following functions are provided by the Digest::GOST
module. None of
these functions are exported by default.
Logically joins the arguments into a single string, and returns its GOST digest encoded as a binary string.
Logically joins the arguments into a single string, and returns its GOST digest encoded as a hexadecimal string.
Logically joins the arguments into a single string, and returns its GOST digest encoded as a Base64 string, without any trailing padding.
The object-oriented interface to Digest::GOST
is identical to that
described by Digest
.
the Digest::GOST::CryptoPro manpage
http://en.wikipedia.org/wiki/GOST_(hash_function)
Please report any bugs or feature requests to http://rt.cpan.org/Public/Bug/Report.html. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Digest::GOST
You can also look for information at:
Copyright (C) 2010-2012 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.
gray, <gray at cpan.org>
Digest::GOST - Perl interface to the GOST R 34.11-94 digest algorithm |