Going from unsalted to salted MD5 passwords

后端 未结 12 828
臣服心动
臣服心动 2021-02-07 02:56

I have a LAMP (PHP) website which is becoming popular.

I played it safe by storing the user passwords as md5 hashes.

But I now see that\'s not secure; I should h

12条回答
  •  执笔经年
    2021-02-07 03:58

    You can still use a salt. Just calculate another hash from the current hash together with a salt:

    $newHash = md5($salt.$oldHash);
    

    For new passwords you then need to use:

    $hash = md5($salt.md5($password));
    

提交回复
热议问题