From: Scott MacVicar Date: Tue, 3 Jun 2008 17:27:10 +0000 (+0000) Subject: MFB: Add snefru256 as an alias for snefru, since in reality that is the implementation. X-Git-Tag: BEFORE_HEAD_NS_CHANGE~1600 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f78b458ecd4355b1815c8c7ddce95c585790452e;p=php MFB: Add snefru256 as an alias for snefru, since in reality that is the implementation. --- diff --git a/ext/hash/hash.c b/ext/hash/hash.c index 2bde759071..a24cacfc58 100644 --- a/ext/hash/hash.c +++ b/ext/hash/hash.c @@ -761,6 +761,7 @@ PHP_MINIT_FUNCTION(hash) 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);