A drop-down list, containing all registered hashing algorithms in PHP. This might become handy for a multiple converter. You may use this in combination with hash().
<?php
echo '<select name="hash">';
foreach (hash_algos() as $hash)
echo '<option value="'.$hash.'">'.$hash.'</option>';
echo '</select>';
?>
Mail this!
- Comments (0)
- PingBacks (0)
- TrackBacks (0)

» Latest comments