View Single Post
  #2 (permalink)  
Old Jan 2nd, 2008, 06:51
Rakuli's Avatar
Rakuli Rakuli is offline
SuperMember

SuperMember
Join Date: Sep 2007
Location: Australia
Age: 24
Posts: 956
Blog Entries: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Encrypted Password

That "Hash" it.

Basically hashing is a one-way encryption method.. The most popular are MD5 SHA1 and SHA2..

They take a string and encrypt it into a uniform length..... Most scripting languages include an implementation of these algorithms...

MySQL has it as a password function

Code: Select all
INSERT INTO table VALUES (PASSWORD('monie'), username)
PHP makes it even easier

PHP: Select all



$hash 
md5('monie');

$hash sha1('monie'); 
I assume ASP has one as well

It will not be retrievable....
Reply With Quote