コード例 #1
0
ファイル: L33tMatch.php プロジェクト: pbull/password_strength
 /**
  * @return float
  */
 public function getEntropy()
 {
     return parent::getEntropy() + $this->l33tEntropy();
 }
コード例 #2
0
 /**
  * Match occurences of dictionary words in password.
  *
  * @copydoc Match::match()
  */
 public static function match($password, array $userInputs = array())
 {
     return DictionaryMatch::match($password, $userInputs);
 }