Ask a Question related to PHP Development, Design and Development.
-
lawrence #1
i can't figure out how to use MD5()
I do get that MD5() scrambles a password, but how do you then
unscrable it? I want to get $password from the user, scrable it, then
append it to every link.
lawrence Guest
-
Help me figure out how I did this!!!
Ok, so without being able to show anyone, what I have is a highly pixelated black and white head shot of myself. Mosaic, except w/ no grout and all... -
Trying to figure this out
Just trying to figure this out but can't. Can someone help with this effect? ... -
Can someone figure it out?
Hi, I was surfing the macromeda.com, then I realised the www.hostmysite.com. The logo made me to thing. If I try to draw it fw, can I figure it out.... -
Need to figure this one out
Hey all Looks like I'm officially the art guy in the band now.....SO I've been asked to design something with this concept: ... -
trying to figure out CSS
Fal: style sheets? Yes, usually. <td> tag, When I try, I get a warning I have already styled this tag for this page ... -
jkd #2
Re: i can't figure out how to use MD5()
The MD5 function can be use to encrypt a password, but there is no PHP
function to decrypt it. I suppose you could brute force an MD5 hash but then
why would you want to append that to a link?
"lawrence" <lkrubner@geocities.com> wrote in message
news:da7e68e8.0308171318.11a5282@posting.google.co m...> I do get that MD5() scrambles a password, but how do you then
> unscrable it? I want to get $password from the user, scrable it, then
> append it to every link.
jkd Guest
-
James #3
Re: i can't figure out how to use MD5()
On 17 Aug 2003 14:18:09 -0700, [email]lkrubner@geocities.com[/email] (lawrence) scrawled:
MD5 isn't an encryption algorithm - it is a checksum algorithm - and>I do get that MD5() scrambles a password, but how do you then
>unscrable it? I want to get $password from the user, scrable it, then
>append it to every link.
so is designed to be one way (it's actually a many - one algorithm) so
two passwords may check sum to the same value (although) this is unlikely
for such short strings.
Baggy
James Guest
-
Andy Hassall #4
Re: i can't figure out how to use MD5()
On 17 Aug 2003 14:18:09 -0700, [email]lkrubner@geocities.com[/email] (lawrence) wrote:
You don't, it's impossible.>I do get that MD5() scrambles a password, but how do you then
>unscrable it?
You store the MD5 of the password. Then when a password is entered in the
future, you MD5 that and compare it with the previously stored MD5. If they
match, the passwords match. Part of the idea of this is that the original
password isn't stored, so even if the table was read by crackers the passwords
wouldn't be revealed.
--
Andy Hassall (andy@andyh.co.uk) icq(5747695) ([url]http://www.andyh.co.uk[/url])
Space: disk usage analysis tool ([url]http://www.andyhsoftware.co.uk/space[/url])
Andy Hassall Guest



Reply With Quote

