I am storing data into my database using MD5 and salt togethser for the hashing as shown below.
Controller
var salt = '112091318*32#'
$user_details = array ('password' => md5(crypt($this->input->post('pass'),$this->salt));
This provides a hash like cf0c249ed76753e679bd17804c4739299
Now my question is, is there a way that i can decrypt the hash back to normal text since , i have the salt ? If so, how ?
NB: I am new to how salt & MD5 works together. Please assist