line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Data::Password::zxcvbn::German::RankedDictionaries; |
2
|
1
|
|
|
1
|
|
8
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
29
|
|
3
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
24
|
|
4
|
1
|
|
|
1
|
|
3823
|
use Data::Password::zxcvbn::RankedDictionaries::Common; |
|
1
|
|
|
|
|
70039
|
|
|
1
|
|
|
|
|
540
|
|
5
|
1
|
|
|
1
|
|
10349
|
use Data::Password::zxcvbn::RankedDictionaries::German; |
|
1
|
|
|
|
|
14
|
|
|
1
|
|
|
|
|
174
|
|
6
|
|
|
|
|
|
|
our $VERSION = '1.0.1'; # VERSION |
7
|
|
|
|
|
|
|
# ABSTRACT: ranked dictionaries for common German words |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our %ranked_dictionaries = ( |
11
|
|
|
|
|
|
|
%Data::Password::zxcvbn::RankedDictionaries::Common::ranked_dictionaries, |
12
|
|
|
|
|
|
|
%Data::Password::zxcvbn::RankedDictionaries::German::ranked_dictionaries, |
13
|
|
|
|
|
|
|
); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
1; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__END__ |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=pod |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=encoding UTF-8 |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 NAME |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
Data::Password::zxcvbn::German::RankedDictionaries - ranked dictionaries for common German words |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 VERSION |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
version 1.0.1 |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 DESCRIPTION |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
This merges the common dictionaries from the C<Data::Password::zxcvbn> |
34
|
|
|
|
|
|
|
distribution, and German dictionaries. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 AUTHOR |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Gianni Ceccarelli <dakkar@thenautilus.net> |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
This software is copyright (c) 2023 by BroadBean UK, a CareerBuilder Company. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
45
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=cut |