Data::Password::zxcvbn::Match::Repeat(3pm) | User Contributed Perl Documentation | Data::Password::zxcvbn::Match::Repeat(3pm) |
Data::Password::zxcvbn::Match::Repeat - match class for repetitions of other matches
version 1.1.2
This class represents the guess that a certain substring of a password is a repetition of some other kind of match.
integer, how many time the ""base_token"" is repeated
the match that is repeated; this will be an instance of some other "Data::Password::zxcvbn::Match::*" class
the minimal estimate of the attempts needed to guess the ""base_token""
the list of patterns that ""base_guesses"" is based on
my @matches = @{ Data::Password::zxcvbn::Match::Repeat->make( $password, \%opts, ) };
Scans the $password for repeated substrings, then recursively analyses them like the main "password_strength" function would do:
password_strength($substring,\%opts);
""base_guesses"" and ""base_matches"" come from that recursive call.
The number of guesses is the ""base_guesses"" times the ""repeat_count"".
This class suggests not to repeat substrings.
The JSON serialisation for matches of this class will contain "token i j guesses guesses_log10 repeat_count base_guesses base_token base_matches".
Gianni Ceccarelli <gianni.ceccarelli@broadbean.com>
This software is copyright (c) 2022 by BroadBean UK, a CareerBuilder Company.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2023-04-04 | perl v5.36.0 |