php代码
C编写,实现字符串摘要、文件摘要两个功能。里面主要包含3个文件: Md5.cpp、Md5.h、Main.cpp。其中Md5.cpp是算法的代码,里的代码大多是从 rfc-1321 里copy过来的;Main.cpp是主程序。
function str_rand($length)//随机字符,参数是长度
{
if(empty($length))
return NULL;
$a = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz';
$rand_str = '';
for($i=0;$i<$length;++$i)
{
$rand_str .= $a[rand(0,61)];
}
return $rand_str;
}









