我正在尝试用 Delphi 10验证Drupal 7密码。
我正在模仿使用PHP hash( ,,TRUE)
函数的_password_crypt()
函数。
散列过程重复进行,从字符串开始,切换到字节;
$hash = hash($algo, $salt . $password, TRUE);
do {
$hash = hash($algo, $hash . $password, TRUE);
} while (--$count);
$len = strlen($hash);
$output = $setting . _password_base64_encode($hash, $len);
THashSHA2
能否复制这一点?如果可以,您能否概述一下该方法?
1条答案
按热度按时间hi3rlvi21#