我正在使用这个类来创建密码哈希。该系统包括一个基于php,iphone设备和Android设备的网页。我需要这些智能手机才能登录并访问存储在我的数据库服务器端的信息。什么是最好的解决方案,是将此方法移植到目标c并将散列发送到服务器?或者使用SSL发送密码并比较哈希服务器端更好?
class PassHash {
// blowfish
private static $algo = '$2a';
// cost parameter
private static $cost = '$10';
// mainly for internal use
public static function unique_salt() {
return substr(sha1(mt_rand()),0,22);
}
// this will be used to generate a hash
public static function hash($password) {
return crypt($password,
self::$algo .
self::$cost .
'$' . self::unique_salt());
}
// this will be used to compare a password against a hash
public static function check_password($hash, $password) {
$full_salt = substr($hash, 0, 29);
$new_hash = crypt($password, $full_salt);
return ($hash == $new_hash);
}
}
答案 0 :(得分:0)
将“哈希移植”到移动应用程序不是一个好主意。服务器的哈希值是唯一的,您不希望在不同的设备平台上使用不同的“哈希”方法。
使用SSL发送密码,让服务器端身份验证模型进行散列。