PHP/Utility Function/mhash
Версия от 13:37, 26 мая 2010; (обсуждение)
MD5 by way of the mhash extension
<source lang="html4strict">
<? $hashB = bin2hex(mhash(MHASH_MD5, "optimize this!")); ?>
</source>
mhash.php
<source lang="html4strict">
<?php
$userpswd = "mysecretpswd"; $pswdhash = mhash(MHASH_SHA1, $userpswd); echo "The hashed password is: ".bin2hex($pswdhash);
?>
</source>