PATH:
home
/
lab2454c
/
sothebankuab.com
/
wp-content
/
plugins
/
wpforms
/
libs
/
bjeavons
/
zxcvbn-php
/
src
/
Matchers
<?php namespace ZxcvbnPhp\Matchers; interface MatchInterface { /** * Match this password. * * @param string $password Password to check for match * @param array $userInputs Array of values related to the user (optional) * @code array('Alice Smith') * @endcode * * @return array Array of Match objects */ public static function match($password, array $userInputs = []); /** * @return integer */ public function getGuesses(); /** * @return float */ public function getGuessesLog10(); }
[-] adjacency_graphs.json
[edit]
[-] ReverseDictionaryMatch.php
[edit]
[-] L33tMatch.php
[edit]
[+]
..
[-] DictionaryMatch.php
[edit]
[-] YearMatch.php
[edit]
[-] SequenceMatch.php
[edit]
[-] SpatialMatch.php
[edit]
[-] MatchInterface.php
[edit]
[-] DateMatch.php
[edit]
[-] frequency_lists.json
[edit]
[-] RepeatMatch.php
[edit]
[-] BaseMatch.php
[edit]
[-] Bruteforce.php
[edit]