|
NAMEDigest::SHA3 - Perl extension for SHA-3 SYNOPSISIn programs: # Functional interface
use Digest::SHA3 qw(sha3_224 sha3_256_hex sha3_512_base64 ...);
$digest = sha3_224($data);
$digest = sha3_256_hex($data);
$digest = sha3_384_base64($data);
$digest = sha3_512($data);
# Object-oriented
use Digest::SHA3;
$sha3 = Digest::SHA3->new($alg);
$sha3->add($data); # feed data into stream
$sha3->addfile(*F);
$sha3->addfile($filename);
$sha3->add_bits($bits);
$sha3->add_bits($data, $nbits);
$digest = $sha3->digest; # compute digest
$digest = $sha3->hexdigest;
$digest = $sha3->b64digest;
# Compute extendable-length digest
$sha3 = Digest::SHA3->new(128000)->add($data); # SHAKE128
$digest = $sha3->squeeze;
$digest .= $sha3->squeeze;
...
$sha3 = Digest::SHA3->new(256000)->add($data); # SHAKE256
$digest = $sha3->squeeze;
$digest .= $sha3->squeeze;
...
ABSTRACTDigest::SHA3 is a complete implementation of the NIST SHA-3 cryptographic hash function, as specified in FIPS 202 (SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions). The module gives Perl programmers a convenient way to calculate SHA3-224, SHA3-256, SHA3-384, and SHA3-512 message digests, as well as variable-length hashes using SHAKE128 and SHAKE256. Digest::SHA3 can handle all types of input, including partial-byte data. DESCRIPTIONDigest::SHA3 is written in C for speed. If your platform lacks a C compiler, perhaps you can find the module in a binary form compatible with your particular processor and operating system. The programming interface is easy to use: it's the same one found in CPAN's Digest module. So, if your applications currently use Digest::SHA and you'd prefer the newer flavor of the NIST standard, it's a simple matter to convert them. The interface provides two ways to calculate digests: all-at-once, or in stages. To illustrate, the following short program computes the SHA3-256 digest of "hello world" using each approach: use Digest::SHA3 qw(sha3_256_hex);
$data = "hello world";
@frags = split(//, $data);
# all-at-once (Functional style)
$digest1 = sha3_256_hex($data);
# in-stages (OOP style)
$state = Digest::SHA3->new(256);
for (@frags) { $state->add($_) }
$digest2 = $state->hexdigest;
print $digest1 eq $digest2 ?
"that's the ticket!\n" : "oops!\n";
To calculate the digest of an n-bit message where n is not a multiple of 8, use the add_bits() method. For example, consider the 446-bit message consisting of the bit-string "110" repeated 148 times, followed by "11". Here's how to display its SHA3-512 digest: use Digest::SHA3;
$bits = "110" x 148 . "11";
$sha3 = Digest::SHA3->new(512)->add_bits($bits);
print $sha3->hexdigest, "\n";
Note that for larger bit-strings, it's more efficient to use the two-argument version add_bits($data, $nbits), where $data is in the customary packed binary format used for Perl strings. UNICODE AND SIDE EFFECTSPerl supports Unicode strings as of version 5.6. Such strings may contain wide characters: namely, characters whose ordinal values are greater than 255. This can cause problems for digest algorithms such as SHA-3 that are specified to operate on sequences of bytes. The rule by which Digest::SHA3 handles a Unicode string is easy to state, but potentially confusing to grasp: the string is interpreted as a sequence of byte values, where each byte value is equal to the ordinal value (viz. code point) of its corresponding Unicode character. That way, the Unicode string 'abc' has exactly the same digest value as the ordinary string 'abc'. Since a wide character does not fit into a byte, the Digest::SHA3 routines croak if they encounter one. Whereas if a Unicode string contains no wide characters, the module accepts it quite happily. The following code illustrates the two cases: $str1 = pack('U*', (0..255));
print sha3_224_hex($str1); # ok
$str2 = pack('U*', (0..256));
print sha3_224_hex($str2); # croaks
Be aware that the digest routines silently convert UTF-8 input into its equivalent byte sequence in the native encoding (cf. utf8::downgrade). This side effect influences only the way Perl stores the data internally, but otherwise leaves the actual value of the data intact. PADDING OF BASE64 DIGESTSBy convention, CPAN Digest modules do not pad their Base64 output. Problems can occur when feeding such digests to other software that expects properly padded Base64 encodings. For the time being, any necessary padding must be done by the user. Fortunately, this is a simple operation: if the length of a Base64-encoded digest isn't a multiple of 4, simply append "=" characters to the end of the digest until it is: while (length($b64_digest) % 4) {
$b64_digest .= '=';
}
To illustrate, sha3_256_base64("abc") is computed to be Ophdp0/iJbIEXBcta9OQvYVfCG4+nVJbRr/iRRFDFTI which has a length of 43. So, the properly padded version is Ophdp0/iJbIEXBcta9OQvYVfCG4+nVJbRr/iRRFDFTI= EXPORTNone by default. EXPORTABLE FUNCTIONSProvided your C compiler supports a 64-bit type (e.g. the long long of C99, or __int64 used by Microsoft C/C++), all of these functions will be available for use. Otherwise you won't be able to perform any of them. In the interest of simplicity, maintainability, and small code size, it's unlikely that future versions of this module will support a 32-bit implementation. Older platforms using 32-bit-only compilers should continue to favor 32-bit hash implementations such as SHA-1, SHA-224, or SHA-256. The desire to use the SHA-3 hash standard, dating from 2015, should reasonably require that one's compiler adhere to programming language standards dating from at least 1999. Functional style
OOP style
SEE ALSODigest, Digest::SHA, Digest::Keccak The FIPS 202 SHA-3 Standard can be found at: <http://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf> The Keccak/SHA-3 specifications can be found at: <http://keccak.noekeon.org/Keccak-reference-3.0.pdf> <http://keccak.noekeon.org/Keccak-submission-3.pdf> AUTHORMark Shelor <mshelor@cpan.org> ACKNOWLEDGMENTSThe author is particularly grateful to Guido Bertoni
Joan Daemen
Michael Peeters
Chris Skiscim
Gilles Van Assche
"Nothing is more fatiguing nor, in the long run, more exasperating than the daily effort to believe things which daily become more incredible. To be done with this effort is an indispensible condition of secure and lasting happiness." - Bertrand Russell COPYRIGHT AND LICENSECopyright (C) 2012-2022 Mark Shelor This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perlartistic
|