Jump to content

MD5-Crypt


Lumio

Recommended Posts

I am glad to see you using salt!

 

do something like this:

<?php
$pass = "doggybag";
$salt = "!@#!@#!@#16657567116711455687**//";
$ck = $_POST['password'];


if(md5($ck.$salt) === md5($pass.$salt){
echo "Correct Password";
}else{
echo "Incorrect Password";
}
?>

 

That should do it, but I did not test that all, post any errors!

Link to comment
https://forums.phpfreaks.com/topic/128243-md5-crypt/#findComment-664986
Share on other sites

Hi Lamez... thx for your post... at least one, who knows the problem with passwords... but my problem was, that I want to generate a md5 (or even blowfish) hash for the shadow-file (I don't want to change that file directly, but with usermod I think it would be ok).

Link to comment
https://forums.phpfreaks.com/topic/128243-md5-crypt/#findComment-665273
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.