scottmac Tue Jun 3 17:27:10 2008 UTC
Modified files:
/php-src/ext/hash hash.c
Log:
MFB: Add snefru256 as an alias for snefru, since in reality that is the
implementation.
http://cvs.php.net/viewvc.cgi/php-src/ext/hash/hash.c?r1=1.42&r2=1.43&diff_format=u
Index: php-src/ext/hash/hash.c
diff -u php-src/ext/hash/hash.c:1.42 php-src/ext/hash/hash.c:1.43
--- php-src/ext/hash/hash.c:1.42 Mon Jun 2 14:13:49 2008
+++ php-src/ext/hash/hash.c Tue Jun 3 17:27:10 2008
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: hash.c,v 1.42 2008/06/02 14:13:49 scottmac Exp $ */
+/* $Id: hash.c,v 1.43 2008/06/03 17:27:10 scottmac Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -761,6 +761,7 @@
php_hash_register_algo("tiger160,4", &php_hash_4tiger160_ops);
php_hash_register_algo("tiger192,4", &php_hash_4tiger192_ops);
php_hash_register_algo("snefru", &php_hash_snefru_ops);
+ php_hash_register_algo("snefru256", &php_hash_snefru_ops);
php_hash_register_algo("gost", &php_hash_gost_ops);
php_hash_register_algo("adler32", &php_hash_adler32_ops);
php_hash_register_algo("crc32", &php_hash_crc32_ops);
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php