-
-
03 Oct 2012 17:46:34 UTC
- Distribution: Digest-GOST
- Module version: 0.06
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Repository
- Issues (1)
- Testers (1560 / 11 / 0)
- Kwalitee
Bus factor: 1- 100.00% Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (38.57KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Digest
- XSLoader
- parent
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
- NAME
- SYNOPSIS
- DESCRIPTION
- FUNCTIONS
- METHODS
- SEE ALSO
- REQUESTS AND BUGS
- SUPPORT
- COPYRIGHT AND LICENSE
- AUTHOR
NAME
Digest::GOST - Perl interface to the GOST R 34.11-94 digest algorithm
SYNOPSIS
# 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;
DESCRIPTION
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
.FUNCTIONS
The following functions are provided by the
Digest::GOST
module. None of these functions are exported by default.gost($data, ...)
Logically joins the arguments into a single string, and returns its GOST digest encoded as a binary string.
gost_hex($data, ...)
Logically joins the arguments into a single string, and returns its GOST digest encoded as a hexadecimal string.
gost_base64($data, ...)
Logically joins the arguments into a single string, and returns its GOST digest encoded as a Base64 string, without any trailing padding.
METHODS
The object-oriented interface to
Digest::GOST
is identical to that described byDigest
.SEE ALSO
http://en.wikipedia.org/wiki/GOST_(hash_function)
REQUESTS AND BUGS
Please report any bugs or feature requests to http://rt.cpan.org/Public/Bug/Report.html?Digest-GOST. 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::GOST
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-GOST
Search CPAN
COPYRIGHT AND LICENSE
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.
AUTHOR
gray, <gray at cpan.org>
Module Install Instructions
To install Digest::GOST, copy and paste the appropriate command in to your terminal.
cpanm Digest::GOST
perl -MCPAN -e shell install Digest::GOST
For more information on module installation, please visit the detailed CPAN module installation guide.