MD5 Value:
Create a md5 hash from a string. The values entered and md5 hashes created on this page are discarded after generation. They are not stored.
Somtimes you need a quick way to hash a string. There are plenty of websites out there that will do this for you, but I don't trust them since they might store the data in a decryption database. I don't store the strings created here. But you shouldn't trust me on that. Use the code below to create your own md5 hash tool:
This code contains php, so it needs to be saved on a page with a php extension. SQL injection is not a problem since we are not storing this information in a database... right?
<?php
if(isset($_POST['md5me']))
{
$md5me = md5($_POST['md5me']);
}
?>
<span class="title">MD5 Hash Generator</span>
<p>MD5 Value: <strong><?php echo $md5me;?></strong></p>
<form action="#" method="post">
<label>MD5 Me:</label>
<input name="md5me" type="text" value="<?php echo $_POST['md5me'];?>" />
<input name="" type="submit" value="Create MD5 Hash" />
</form>