我有一个使用php和mysql的现有工作登录系统。 我想将其迁移到node.js.对于下面的代码,是否有相同产品的有用解决方案?或者也许更好地重写所有包括生成新密码?
提前致谢
/**
* Encrypting password
* @param password
* returns salt and encrypted password
*/
public function hashSSHA($password) {
$salt = sha1(rand());
$salt = substr($salt, 0, 10);
$encrypted = base64_encode(sha1($password . $salt, true) . $salt);
$hash = array("salt" => $salt, "encrypted" => $encrypted);
return $hash;
}
/**
* Decrypting password
* @param salt, password
* returns hash string
*/
public function checkhashSSHA($salt, $password) {
$hash = base64_encode(sha1($password . $salt, true) . $salt);
return $hash;
}
并使用该功能:
public function getUserByNameAndPassword($name, $password) {
$result = mysql_query("SELECT * FROM users WHERE name = '$name'") or die(mysql_error());
// check for result
$no_of_rows = mysql_num_rows($result);
if ($no_of_rows > 0) {
$result = mysql_fetch_array($result);
$salt = $result['salt'];
$encrypted_password = $result['encrypted_password'];
$hash = $this->checkhashSSHA($salt, $password);
// check for password equality
if ($encrypted_password == $hash) {
// user authentication details are correct
return $result;
}
} else {
// user not found
return false;
}
}
和
public function storeUser($name, $password) {
$uuid = uniqid('', true);
$hash = $this->hashSSHA($password);
$encrypted_password = $hash["encrypted"]; // encrypted password
$salt = $hash["salt"]; // salt
//more code ...
}
答案 0 :(得分:1)
看看这个本地节点库:
https://nodejs.org/api/crypto.html
这将允许您正确散列,并且您可以从多个引擎中进行选择以进行散列。此外,还有许多加密模块,例如https://www.npmjs.com/package/bcrypt。
使用其中任何一个都可以很容易地重现与javascript相同的php。