1
0
mirror of https://github.com/danog/phpseclib.git synced 2025-01-22 04:51:19 +01:00

- rm bin2hex() call in _md2()

git-svn-id: http://phpseclib.svn.sourceforge.net/svnroot/phpseclib/trunk@57 21d32557-59b3-4da0-833f-c5933fad653e
This commit is contained in:
Jim Wigginton 2009-11-23 22:03:08 +00:00
parent a4e72f7811
commit 4fd4601ed8

View File

@ -49,7 +49,7 @@
* @author Jim Wigginton <terrafrost@php.net>
* @copyright MMVII Jim Wigginton
* @license http://www.gnu.org/licenses/lgpl.txt
* @version $Id: Hash.php,v 1.4 2009-11-23 19:06:07 terrafrost Exp $
* @version $Id: Hash.php,v 1.5 2009-11-23 22:03:08 terrafrost Exp $
* @link http://phpseclib.sourceforge.net
*/
@ -431,7 +431,7 @@ class Crypt_Hash {
}
// Step 5. Output
return bin2hex(substr($x, 0, 16));
return substr($x, 0, 16);
}
/**