Post: [PHP] Simple Hash Generator
11-09-2013, 07:11 PM #1
Dan
I'm a god.
(adsbygoogle = window.adsbygoogle || []).push({}); This simple PHP tool generates all PHP hash types which are listed here: You must login or register to view this content.
I made this out of boredom, though if you know PHP this isn't hard at all to make, but there's always those couple of people. So enjoy Tiphat

    <?php
$hash='';
if(isset($_POST['hash'])) {
$hash_type = $_POST['hash_type'];
$hash_text = $_POST['string'];
$hash = hash(''.$hash_type.'', ''.$hash_text.''Winky Winky;
}

?>
<html>
<body>
<form method="POST">
<input type="text" name="hash_type" placeholder="Type of Hash"><br><br>
<input type="text" name="string" placeholder="Text to hash"><br><br>
<input type="submit" name="hash" value="MD5 My Text!">
</form>
<?php echo $hash; ?>
</body>
</html>

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo