229 lines
6.6 KiB
Perl
229 lines
6.6 KiB
Perl
package Crypt::Digest::BLAKE2s_128;
|
|
|
|
### BEWARE - GENERATED FILE, DO NOT EDIT MANUALLY!
|
|
|
|
use strict;
|
|
use warnings;
|
|
our $VERSION = '0.048';
|
|
|
|
use base qw(Crypt::Digest Exporter);
|
|
our %EXPORT_TAGS = ( all => [qw( blake2s_128 blake2s_128_hex blake2s_128_b64 blake2s_128_b64u blake2s_128_file blake2s_128_file_hex blake2s_128_file_b64 blake2s_128_file_b64u )] );
|
|
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
|
|
our @EXPORT = qw();
|
|
|
|
use Carp;
|
|
$Carp::Internal{(__PACKAGE__)}++;
|
|
use CryptX;
|
|
|
|
sub hashsize { Crypt::Digest::hashsize(__PACKAGE__) }
|
|
|
|
sub blake2s_128 { Crypt::Digest::digest_data(__PACKAGE__, @_) }
|
|
sub blake2s_128_hex { Crypt::Digest::digest_data_hex(__PACKAGE__, @_) }
|
|
sub blake2s_128_b64 { Crypt::Digest::digest_data_b64(__PACKAGE__, @_) }
|
|
sub blake2s_128_b64u { Crypt::Digest::digest_data_b64u(__PACKAGE__, @_) }
|
|
|
|
sub blake2s_128_file { Crypt::Digest::digest_file(__PACKAGE__, @_) }
|
|
sub blake2s_128_file_hex { Crypt::Digest::digest_file_hex(__PACKAGE__, @_) }
|
|
sub blake2s_128_file_b64 { Crypt::Digest::digest_file_b64(__PACKAGE__, @_) }
|
|
sub blake2s_128_file_b64u { Crypt::Digest::digest_file_b64u(__PACKAGE__, @_) }
|
|
|
|
1;
|
|
|
|
=pod
|
|
|
|
=head1 NAME
|
|
|
|
Crypt::Digest::BLAKE2s_128 - Hash function BLAKE2s [size: 128 bits]
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
### Functional interface:
|
|
use Crypt::Digest::BLAKE2s_128 qw( blake2s_128 blake2s_128_hex blake2s_128_b64 blake2s_128_b64u
|
|
blake2s_128_file blake2s_128_file_hex blake2s_128_file_b64 blake2s_128_file_b64u );
|
|
|
|
# calculate digest from string/buffer
|
|
$blake2s_128_raw = blake2s_128('data string');
|
|
$blake2s_128_hex = blake2s_128_hex('data string');
|
|
$blake2s_128_b64 = blake2s_128_b64('data string');
|
|
$blake2s_128_b64u = blake2s_128_b64u('data string');
|
|
# calculate digest from file
|
|
$blake2s_128_raw = blake2s_128_file('filename.dat');
|
|
$blake2s_128_hex = blake2s_128_file_hex('filename.dat');
|
|
$blake2s_128_b64 = blake2s_128_file_b64('filename.dat');
|
|
$blake2s_128_b64u = blake2s_128_file_b64u('filename.dat');
|
|
# calculate digest from filehandle
|
|
$blake2s_128_raw = blake2s_128_file(*FILEHANDLE);
|
|
$blake2s_128_hex = blake2s_128_file_hex(*FILEHANDLE);
|
|
$blake2s_128_b64 = blake2s_128_file_b64(*FILEHANDLE);
|
|
$blake2s_128_b64u = blake2s_128_file_b64u(*FILEHANDLE);
|
|
|
|
### OO interface:
|
|
use Crypt::Digest::BLAKE2s_128;
|
|
|
|
$d = Crypt::Digest::BLAKE2s_128->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
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
Provides an interface to the BLAKE2s_128 digest algorithm.
|
|
|
|
=head1 EXPORT
|
|
|
|
Nothing is exported by default.
|
|
|
|
You can export selected functions:
|
|
|
|
use Crypt::Digest::BLAKE2s_128 qw(blake2s_128 blake2s_128_hex blake2s_128_b64 blake2s_128_b64u
|
|
blake2s_128_file blake2s_128_file_hex blake2s_128_file_b64 blake2s_128_file_b64u);
|
|
|
|
Or all of them at once:
|
|
|
|
use Crypt::Digest::BLAKE2s_128 ':all';
|
|
|
|
=head1 FUNCTIONS
|
|
|
|
=head2 blake2s_128
|
|
|
|
Logically joins all arguments into a single string, and returns its BLAKE2s_128 digest encoded as a binary string.
|
|
|
|
$blake2s_128_raw = blake2s_128('data string');
|
|
#or
|
|
$blake2s_128_raw = blake2s_128('any data', 'more data', 'even more data');
|
|
|
|
=head2 blake2s_128_hex
|
|
|
|
Logically joins all arguments into a single string, and returns its BLAKE2s_128 digest encoded as a hexadecimal string.
|
|
|
|
$blake2s_128_hex = blake2s_128_hex('data string');
|
|
#or
|
|
$blake2s_128_hex = blake2s_128_hex('any data', 'more data', 'even more data');
|
|
|
|
=head2 blake2s_128_b64
|
|
|
|
Logically joins all arguments into a single string, and returns its BLAKE2s_128 digest encoded as a Base64 string, B<with> trailing '=' padding.
|
|
|
|
$blake2s_128_b64 = blake2s_128_b64('data string');
|
|
#or
|
|
$blake2s_128_b64 = blake2s_128_b64('any data', 'more data', 'even more data');
|
|
|
|
=head2 blake2s_128_b64u
|
|
|
|
Logically joins all arguments into a single string, and returns its BLAKE2s_128 digest encoded as a Base64 URL Safe string (see RFC 4648 section 5).
|
|
|
|
$blake2s_128_b64url = blake2s_128_b64u('data string');
|
|
#or
|
|
$blake2s_128_b64url = blake2s_128_b64u('any data', 'more data', 'even more data');
|
|
|
|
=head2 blake2s_128_file
|
|
|
|
Reads file (defined by filename or filehandle) content, and returns its BLAKE2s_128 digest encoded as a binary string.
|
|
|
|
$blake2s_128_raw = blake2s_128_file('filename.dat');
|
|
#or
|
|
$blake2s_128_raw = blake2s_128_file(*FILEHANDLE);
|
|
|
|
=head2 blake2s_128_file_hex
|
|
|
|
Reads file (defined by filename or filehandle) content, and returns its BLAKE2s_128 digest encoded as a hexadecimal string.
|
|
|
|
$blake2s_128_hex = blake2s_128_file_hex('filename.dat');
|
|
#or
|
|
$blake2s_128_hex = blake2s_128_file_hex(*FILEHANDLE);
|
|
|
|
B<BEWARE:> You have to make sure that the filehandle is in binary mode before you pass it as argument to the addfile() method.
|
|
|
|
=head2 blake2s_128_file_b64
|
|
|
|
Reads file (defined by filename or filehandle) content, and returns its BLAKE2s_128 digest encoded as a Base64 string, B<with> trailing '=' padding.
|
|
|
|
$blake2s_128_b64 = blake2s_128_file_b64('filename.dat');
|
|
#or
|
|
$blake2s_128_b64 = blake2s_128_file_b64(*FILEHANDLE);
|
|
|
|
=head2 blake2s_128_file_b64u
|
|
|
|
Reads file (defined by filename or filehandle) content, and returns its BLAKE2s_128 digest encoded as a Base64 URL Safe string (see RFC 4648 section 5).
|
|
|
|
$blake2s_128_b64url = blake2s_128_file_b64u('filename.dat');
|
|
#or
|
|
$blake2s_128_b64url = blake2s_128_file_b64u(*FILEHANDLE);
|
|
|
|
=head1 METHODS
|
|
|
|
The OO interface provides the same set of functions as L<Crypt::Digest>.
|
|
|
|
=head2 new
|
|
|
|
$d = Crypt::Digest::BLAKE2s_128->new();
|
|
|
|
=head2 clone
|
|
|
|
$d->clone();
|
|
|
|
=head2 reset
|
|
|
|
$d->reset();
|
|
|
|
=head2 add
|
|
|
|
$d->add('any data');
|
|
#or
|
|
$d->add('any data', 'more data', 'even more data');
|
|
|
|
=head2 addfile
|
|
|
|
$d->addfile('filename.dat');
|
|
#or
|
|
$d->addfile(*FILEHANDLE);
|
|
|
|
=head2 add_bits
|
|
|
|
$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);
|
|
|
|
=head2 hashsize
|
|
|
|
$d->hashsize;
|
|
#or
|
|
Crypt::Digest::BLAKE2s_128->hashsize();
|
|
#or
|
|
Crypt::Digest::BLAKE2s_128::hashsize();
|
|
|
|
=head2 digest
|
|
|
|
$result_raw = $d->digest();
|
|
|
|
=head2 hexdigest
|
|
|
|
$result_hex = $d->hexdigest();
|
|
|
|
=head2 b64digest
|
|
|
|
$result_b64 = $d->b64digest();
|
|
|
|
=head2 b64udigest
|
|
|
|
$result_b64url = $d->b64udigest();
|
|
|
|
=head1 SEE ALSO
|
|
|
|
=over
|
|
|
|
=item * L<CryptX|CryptX>, L<Crypt::Digest|Crypt::Digest>
|
|
|
|
=item * L<https://blake2.net/|https://blake2.net/>
|
|
|
|
=item * L<https://tools.ietf.org/html/rfc7693|https://tools.ietf.org/html/rfc7693>
|
|
|
|
=back
|
|
|
|
=cut
|
|
|
|
__END__ |