• MD5 is a 'one way' algorithm. you can't decrypt it.

    is very usefull to encrypt passwords, or data that you don't need to read directly.

    for instance, if i store a md5 string of my password, the system have to compare two md5 strings (password_stored vs MD5(password_wrote)) to verify if my password is correct and letme log in.

    greets...