Re: [VB.Net]MD5 Encrypter
Woot! Hope you could've done decryptor also :glare:
Re: [VB.Net]MD5 Encrypter
Quote:
Originally Posted by
PowahAlert
Woot! Hope you could've done decryptor also :glare:
md5 is a one way, you know that right? :glare:
Re: [VB.Net]MD5 Encrypter
Quote:
Originally Posted by
Rice
md5 is a one way, you know that right? :glare:
until someone finds out how to decrypt it.
Re: [VB.Net]MD5 Encrypter
Quote:
Originally Posted by
PowahAlert
Woot! Hope you could've done decryptor also :glare:
i lol'd
Re: [VB.Net]MD5 Encrypter
Or you could make a new php file and type in
PHP Code:
<?php
echo md5(your words);
?>
saves all the downloading and shit...
Re: [VB.Net]MD5 Encrypter
yeah but then u have to edit the php file every time u want to encrypt a new word
Re: [VB.Net]MD5 Encrypter
Quote:
Originally Posted by
viper67
yeah but then u have to edit the php file every time u want to encrypt a new word
PHP Code:
<?php
if(isset($_GET['text']))
{
$md5 = md5($_GET['text']);
$_GET['text'] = htmlspecialchars($_GET['text']);
echo $_GET['text'] . ' ~>MD5~> ' . $md5;
} else {
$_GET['text'] = 'String to convert to MD5';
}
echo '<form action="" method="get">
<input type="text" name="text" value="'.$_GET['text'].'" />
<input type="submit" name="convert" value="Convert to MD5" />
</form>';
myfile.php?text=Hello, World
Re: [VB.Net]MD5 Encrypter
Good job on the project, but it's pretty pointless.
Re: [VB.Net]MD5 Encrypter
well its not pointless for me :]
Thanks for the comments though, criticism is always welcome :]
Re: [VB.Net]MD5 Encrypter
......................
Fine.. I'll just leave this here to show how stupid this is....
HOLY SHIT, ITS MD5!!!
Re: [VB.Net]MD5 Encrypter
again, at least i dont have to open the website, this sits on my desktop, you can call it pointless all you want but it works for me.
Re: [VB.Net]MD5 Encrypter
Quote:
Originally Posted by
viper67
again, at least i dont have to open the website, this sits on my desktop, you can call it pointless all you want but it works for me.
You seem to be afraid of tabbed browsing. It's convenient yo.
And there's no reason you should be calculating MD5s by hand. You're doing something wrong.
Re: [VB.Net]MD5 Encrypter
nah, i am working on a server emulator, and rather then make a php scirpt to create new accounts for my testers i just add them to the db manually, so i need the md5 for there passwords, this is just easier for me.
Re: [VB.Net]MD5 Encrypter
Quote:
Originally Posted by
viper67
nah, i am working on a server emulator, and rather then make a php scirpt to create new accounts for my testers i just add them to the db manually, so i need the md5 for there passwords, this is just easier for me.
See, you're doing it wrong.
Both MySQL (MySQL :: MySQL 5.5 Reference Manual :: 11.13 Encryption and Compression Functions) and MSSQL (HASHBYTES (Transact-SQL)) can calculate MD5s for you.
Stop being noob, thx.