コード例 #1
0
 public function GetEncryptedPassword($plainPassword)
 {
     return $this->passwordHasher->GetHash($plainPassword);
 }
コード例 #2
0
ファイル: hash_utils.php プロジェクト: howareyoucolin/demo
 /**
  * @param string $algorithmName
  */
 public function __construct($algorithmName)
 {
     parent::__construct();
     $this->algorithmName = $algorithmName;
 }