mhash 哈稀函数库
时间:2007-02-17 来源:PHP爱好者
本函数库支持多种哈稀演算法,例如最出名的 MD5、SHA1 或 GOST,还有其它多种的哈稀演算法,列示如下:
- MHASH_MD5
- MHASH_SHA1
- MHASH_HAVAL
- MHASH_RIPEMD160
- MHASH_RIPEMD128
- MHASH_SNEFRU
- MHASH_TIGER
- MHASH_GOST
- MHASH_CRC32
- MHASH_CRC32B
欲使用本函数库要先下载 mhash-x.x.x.tar.gz,网址为 http://sasweb.de/mhash 。当然还要编译 mhash 程序库,之后才能编译 PHP 程序,在编译 PHP 程序时,记得要加 --with-mhash 选项打开系统的 mhash 功能。
本函数库适合用来产生检查码 (checksums)、数位代信息或者其它功能,如下例:
<?php
$input = "Let us meet at 9 o' clock at the secret place." ;
$hash = mhash ( MHASH_SHA1 , $input );
print "哈稀值为 " . bin2hex ( $hash ). "n" ;
?>
在浏览器看到的字符串是
哈稀值为 d3b85d710d8f6e4e5efd4d5e67d041f9cecedafe
php爱 好者站 http://www.phpfans.net 文章|教程|下载|源码|论坛.
相关阅读 更多 +