本文整理汇总了PHP中Magento\Framework\Encryption\EncryptorInterface::isValidHash方法的典型用法代码示例。如果您正苦于以下问题:PHP EncryptorInterface::isValidHash方法的具体用法?PHP EncryptorInterface::isValidHash怎么用?PHP EncryptorInterface::isValidHash使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Magento\Framework\Encryption\EncryptorInterface
的用法示例。
在下文中一共展示了EncryptorInterface::isValidHash方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: execute
/**
* Harden admin password change.
*
* New password must be minimum 7 chars length and include alphanumeric characters
* The password is compared to at least last 4 previous passwords to prevent setting them again
*
* @param EventObserver $observer
* @return void
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function execute(EventObserver $observer)
{
/* @var $user \Magento\User\Model\User */
$user = $observer->getEvent()->getObject();
if ($user->getNewPassword()) {
$password = $user->getNewPassword();
} else {
$password = $user->getPassword();
}
if ($password && !$user->getForceNewPassword() && $user->getId()) {
if ($this->encryptor->isValidHash($password, $user->getOrigData('password'))) {
throw new \Magento\Framework\Exception\LocalizedException(__('Sorry, but this password has already been used. Please create another.'));
}
// check whether password was used before
$passwordHash = $this->encryptor->getHash($password, false);
foreach ($this->userResource->getOldPasswords($user) as $oldPasswordHash) {
if ($passwordHash === $oldPasswordHash) {
throw new \Magento\Framework\Exception\LocalizedException(__('Sorry, but this password has already been used. Please create another.'));
}
}
}
}
示例2: validatePasswordChange
/**
* Make sure admin password was changed.
*
* New password is compared to at least 4 previous passwords to prevent setting them again
*
* @return bool|string[]
*/
protected function validatePasswordChange()
{
$password = $this->getPassword();
if ($password && !$this->getForceNewPassword() && $this->getId()) {
$errorMessage = __('Sorry, but this password has already been used. Please create another.');
// Check if password is equal to the current one
if ($this->_encryptor->isValidHash($password, $this->getOrigData('password'))) {
return [$errorMessage];
}
// Check whether password was used before
$passwordHash = $this->_encryptor->getHash($password, false);
foreach ($this->getResource()->getOldPasswords($this) as $oldPasswordHash) {
if ($passwordHash === $oldPasswordHash) {
return [$errorMessage];
}
}
}
return true;
}