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
Crypt::Digest::RIPEMD320(3) User Contributed Perl Documentation Crypt::Digest::RIPEMD320(3)

Crypt::Digest::RIPEMD320 - Hash function RIPEMD-320 [size: 320 bits]

   ### Functional interface:
   use Crypt::Digest::RIPEMD320 qw( ripemd320 ripemd320_hex ripemd320_b64 ripemd320_b64u
                                ripemd320_file ripemd320_file_hex ripemd320_file_b64 ripemd320_file_b64u );

   # calculate digest from string/buffer
   $ripemd320_raw  = ripemd320('data string');
   $ripemd320_hex  = ripemd320_hex('data string');
   $ripemd320_b64  = ripemd320_b64('data string');
   $ripemd320_b64u = ripemd320_b64u('data string');
   # calculate digest from file
   $ripemd320_raw  = ripemd320_file('filename.dat');
   $ripemd320_hex  = ripemd320_file_hex('filename.dat');
   $ripemd320_b64  = ripemd320_file_b64('filename.dat');
   $ripemd320_b64u = ripemd320_file_b64u('filename.dat');
   # calculate digest from filehandle
   $ripemd320_raw  = ripemd320_file(*FILEHANDLE);
   $ripemd320_hex  = ripemd320_file_hex(*FILEHANDLE);
   $ripemd320_b64  = ripemd320_file_b64(*FILEHANDLE);
   $ripemd320_b64u = ripemd320_file_b64u(*FILEHANDLE);

   ### OO interface:
   use Crypt::Digest::RIPEMD320;

   $d = Crypt::Digest::RIPEMD320->new;
   $d->add('any data');
   $d->addfile('filename.dat');
   $d->addfile(*FILEHANDLE);
   $result_raw  = $d->digest;     # raw bytes
   $result_hex  = $d->hexdigest;  # hexadecimal form
   $result_b64  = $d->b64digest;  # Base64 form
   $result_b64u = $d->b64udigest; # Base64 URL Safe form

Provides an interface to the RIPEMD320 digest algorithm.

Nothing is exported by default.

You can export selected functions:

  use Crypt::Digest::RIPEMD320 qw(ripemd320 ripemd320_hex ripemd320_b64 ripemd320_b64u
                                      ripemd320_file ripemd320_file_hex ripemd320_file_b64 ripemd320_file_b64u);

Or all of them at once:

  use Crypt::Digest::RIPEMD320 ':all';

Logically joins all arguments into a single string, and returns its RIPEMD320 digest encoded as a binary string.

 $ripemd320_raw = ripemd320('data string');
 #or
 $ripemd320_raw = ripemd320('any data', 'more data', 'even more data');

Logically joins all arguments into a single string, and returns its RIPEMD320 digest encoded as a hexadecimal string.

 $ripemd320_hex = ripemd320_hex('data string');
 #or
 $ripemd320_hex = ripemd320_hex('any data', 'more data', 'even more data');

Logically joins all arguments into a single string, and returns its RIPEMD320 digest encoded as a Base64 string, with trailing '=' padding.

 $ripemd320_b64 = ripemd320_b64('data string');
 #or
 $ripemd320_b64 = ripemd320_b64('any data', 'more data', 'even more data');

Logically joins all arguments into a single string, and returns its RIPEMD320 digest encoded as a Base64 URL Safe string (see RFC 4648 section 5).

 $ripemd320_b64url = ripemd320_b64u('data string');
 #or
 $ripemd320_b64url = ripemd320_b64u('any data', 'more data', 'even more data');

Reads file (defined by filename or filehandle) content, and returns its RIPEMD320 digest encoded as a binary string.

 $ripemd320_raw = ripemd320_file('filename.dat');
 #or
 $ripemd320_raw = ripemd320_file(*FILEHANDLE);

Reads file (defined by filename or filehandle) content, and returns its RIPEMD320 digest encoded as a hexadecimal string.

 $ripemd320_hex = ripemd320_file_hex('filename.dat');
 #or
 $ripemd320_hex = ripemd320_file_hex(*FILEHANDLE);

BEWARE: You have to make sure that the filehandle is in binary mode before you pass it as argument to the addfile() method.

Reads file (defined by filename or filehandle) content, and returns its RIPEMD320 digest encoded as a Base64 string, with trailing '=' padding.

 $ripemd320_b64 = ripemd320_file_b64('filename.dat');
 #or
 $ripemd320_b64 = ripemd320_file_b64(*FILEHANDLE);

Reads file (defined by filename or filehandle) content, and returns its RIPEMD320 digest encoded as a Base64 URL Safe string (see RFC 4648 section 5).

 $ripemd320_b64url = ripemd320_file_b64u('filename.dat');
 #or
 $ripemd320_b64url = ripemd320_file_b64u(*FILEHANDLE);

The OO interface provides the same set of functions as Crypt::Digest.

 $d = Crypt::Digest::RIPEMD320->new();

 $d->clone();

 $d->reset();

 $d->add('any data');
 #or
 $d->add('any data', 'more data', 'even more data');

 $d->addfile('filename.dat');
 #or
 $d->addfile(*FILEHANDLE);

 $d->add_bits($bit_string);   # e.g. $d->add_bits("111100001010");
 #or
 $d->add_bits($data, $nbits); # e.g. $d->add_bits("\xF0\xA0", 16);

 $d->hashsize;
 #or
 Crypt::Digest::RIPEMD320->hashsize();
 #or
 Crypt::Digest::RIPEMD320::hashsize();

 $result_raw = $d->digest();

 $result_hex = $d->hexdigest();

 $result_b64 = $d->b64digest();

 $result_b64url = $d->b64udigest();

  • CryptX, Crypt::Digest
  • <https://en.wikipedia.org/wiki/RIPEMD>
2022-01-07 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.