summaryrefslogtreecommitdiff
path: root/ext/hash
diff options
context:
space:
mode:
authorScott MacVicar <scottmac@php.net>2008-06-03 17:25:42 +0000
committerScott MacVicar <scottmac@php.net>2008-06-03 17:25:42 +0000
commit2b60fdf97635564773d109442c926a582dd9f2d1 (patch)
tree3dfa3320556397d518cbc87cdf946c5bb64347f1 /ext/hash
parentb368d3401851c050839740b35c96116f69751551 (diff)
downloadphp-git-2b60fdf97635564773d109442c926a582dd9f2d1.tar.gz
Add snefru256 as an alias for snefru, since in reality that is the implementation.
Diffstat (limited to 'ext/hash')
-rw-r--r--ext/hash/hash.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/hash/hash.c b/ext/hash/hash.c
index 4de89d436a..17520e5117 100644
--- a/ext/hash/hash.c
+++ b/ext/hash/hash.c
@@ -590,6 +590,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);