GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Digest::GOST(3) User Contributed Perl Documentation Digest::GOST(3)

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".

Digest::GOST::CryptoPro

Digest

Task::Digest

<http://en.wikipedia.org/wiki/GOST_(hash_function)>

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.

You can find documentation for this module with the perldoc command.

    perldoc Digest::GOST

You can also look for information at:

  • GitHub Source Repository

    <http://github.com/gray/digest-gost>

  • AnnoCPAN: Annotated CPAN documentation

    <http://annocpan.org/dist/Digest-GOST>

  • CPAN Ratings

    <http://cpanratings.perl.org/d/Digest-GOST>

  • RT: CPAN's request tracker

    <http://rt.cpan.org/Public/Dist/Display.html?Name=Digest-GOST>

  • Search CPAN

    <http://search.cpan.org/dist/Digest-GOST/>

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>
2012-10-03 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.