Drop-down list with registered hashing algorithms

Views: 21 Last modified: August 03rd, 2011 Comments: 0

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>';

?>
VN:F [1.9.13_1145]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.13_1145]
Rating: 0 (from 0 votes)

    Mail this!

    To: From:Sum {2+5} =  
    Anything to add ?

        You must be logged in to post a comment.