i can't figure out how to use MD5()

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. Trying to figure this out
      Just trying to figure this out but can't. Can someone help with this effect? ...
    3. 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....
    4. 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: ...
    5. 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 ...
  3. #2

    Default 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

  4. #3

    Default 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:
    >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.
    MD5 isn't an encryption algorithm - it is a checksum algorithm - and
    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

  5. #4

    Default 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:
    >I do get that MD5() scrambles a password, but how do you then
    >unscrable it?
    You don't, it's impossible.

    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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139