Tiger hash output byte order

Bug #60221 Tiger hash output byte order
Submitted: 2011-11-04 18:27 UTC Modified: 2012-01-27 23:12 UTC
Votes:2
Avg. Score:3.5 ± 0.5
Reproduced:2 of 2 (100.0%)
Same Version:0 (0.0%)
Same OS:1 (50.0%)
From: chadd at fidelissys dot com Assigned: mike (profile)
Status: Closed Package: hash related
PHP Version: 5.3.8 OS: Linux
Private report: No CVE-ID: None

 [2011-11-04 18:27 UTC] chadd at fidelissys dot com

Description:
------------
The testtiger program prints its hashes with each 8-byte chunk byte-swapped (perhaps arch-dependent?).  The "24f0130c63ac9332..." hash of the tiger*,3 family would be printed "3293ac630c13f024..." in MSB-first representation, e.g. as given on Wikipedia's example output.

Perl's Digest::Tiger also uses the MSB-first format: http://search.cpan.org/~clintdw/Digest-Tiger-0.03/Tiger.pm#NOTE

The lack of MSB-first order potentially impacts interoperability, but changing the output of "tiger192,3" would break BC with anyone who doesn't have interop problems.

This bug has been observed in php 5.2.6 as well.

Test script:
---------------
<?php echo hash('tiger192,3', ''), "\n"; ?>


Expected result:
----------------
3293ac630c13f0245f92bbb1766e16167a4e58492dde73f3

Actual result:
--------------
24f0130c63ac933216166e76b1bb925ff373de2d49584e7a

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports

 [2012-01-17 15:26 UTC] mike@php.net

This bug has been fixed in SVN.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.


 [2012-01-17 15:26 UTC] mike@php.net

-Status: Open +Status: To be documented -Assigned To: +Assigned To: mike