crc32 haval160 md5
crc32b haval192 ripemd160
gost haval224 sha1
haval128 haval256 tiger
如何安装mhash扩展库?
象mcrypt一 样,mhash也没有包括在php软件包中,下面是安装过程(非windows):
首先,下载mhash扩展库(http://sourceforge.net/projects/mhash/ )
gunzipmhash-x.x.x.tar.gz
tar -xvfmhash-x.x.x.tar
./configure
make
make install
cd
./configure -with-mhash=[dir] [--other-configuration-directives]
make
make install
然后,象mcrypt一样,根据php在互联网服务器软件上的安装方式,可能需要对mhash进行其他的配置。
对于windows用户而言, http://www.php4win.de中有一个很好的包括mhash扩展库在内的php软件包。只要下载并进行解压缩,然后根据其中的readme.first文档中的指令进行安装即可。
如何使用mhash?
对信息进行混编非常简单,看一下下面的例子:
<?php
$hash_alg = mhash_tiger;
$message = "these are the directions to the secret fort. two steps left, three steps right, and cha chacha.";
$hashed_message = mhash($hash_alg, $message);
print "the hashed message is ". bin2hex($hashed_message);
?>
执行这一段脚本程序将得到下面的输出结果:
the hashed message is 07a92a4db3a4177f19ec9034ae5400eb60d1a9fbb4ade461
在这里使用bin2hex()函数的目的是方便我们理解$hashed_message 的输出,这是因为混编的结果是二进制格式,为了能够将它转化为易于理解的格式,必须将它转换为十六进制格式。
需要注意的是,混编是单向功能,其结果不依赖输入。
mhash还有其他一些有用的函数。例如,我们需要输出一个mhash支持的算法的名字,由于 mhash支持的所有算法的名字都以mhash_开头,因此,可以通过执行如下的代码完成这一任务:
<?php
$hash_alg = mhash_tiger;
print "this data has been hashed with the".mhash_get_hash_name($hashed_message)."hashing algorithm.";
?>>
得到的输出是:
this data has been hashed with the tiger hashing algorithm.
关于php和加密需要注意什么问题?
php加密需要注意的一个重要问题是在服务器和客户端之间传输的数据在传输过程中是不安全的!php是一种服务器端技术,不能阻止数据在传输过程中泄密。因此,如果想实现一个完整的安全应用,建议选用 apache-ssl或其他的安全服务器。
最大的网站源码资源下载站,
新闻热点
疑难解答