scottmac                Tue Jun  3 17:25:42 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/ext/hash   hash.c 
  Log:
  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.18.2.5.2.7.2.5&r2=1.18.2.5.2.7.2.6&diff_format=u
Index: php-src/ext/hash/hash.c
diff -u php-src/ext/hash/hash.c:1.18.2.5.2.7.2.5 
php-src/ext/hash/hash.c:1.18.2.5.2.7.2.6
--- php-src/ext/hash/hash.c:1.18.2.5.2.7.2.5    Mon Jun  2 12:24:22 2008
+++ php-src/ext/hash/hash.c     Tue Jun  3 17:25:42 2008
@@ -16,7 +16,7 @@
   +----------------------------------------------------------------------+
 */
 
-/* $Id: hash.c,v 1.18.2.5.2.7.2.5 2008/06/02 12:24:22 scottmac Exp $ */
+/* $Id: hash.c,v 1.18.2.5.2.7.2.6 2008/06/03 17:25:42 scottmac Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -590,6 +590,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

Reply via email to