Skip to content

Commit

Permalink
Tweaked the DEFAULT preset
Browse files Browse the repository at this point in the history
Tweaked the DEFAULT preset to make it shorter but still have enough
entropy.
  • Loading branch information
Bart Busscots committed Nov 9, 2014
1 parent e21b3d3 commit 0512d91
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions XKPasswd.pm
Original file line number Diff line number Diff line change
Expand Up @@ -248,20 +248,20 @@ my $_KEYS = {
# preset definitions
my $_PRESETS = {
DEFAULT => {
description => 'The default preset resulting in a password consisting of 4 random words of between 4 and 8 letters separated by a random character, with two random digits before and after, and padded with two random characters front and back',
description => 'The default preset resulting in a password consisting of 3 random words of between 4 and 8 letters with alternating case separated by a random character, with two random digits before and after, and padded with two random characters front and back',
config => {
symbol_alphabet => [qw{! @ $ % ^ & * - _ + = : | ~ ?}],
symbol_alphabet => [qw{! @ $ % ^ & * - _ + = : | ~ ? / . ;}],
word_length_min => 4,
word_length_max => 8,
num_words => 4,
num_words => 3,
separator_character => 'RANDOM',
padding_digits_before => 2,
padding_digits_after => 2,
padding_type => 'FIXED',
padding_character => 'RANDOM',
padding_characters_before => 2,
padding_characters_after => 2,
case_transform => 'CAPITALISE',
case_transform => 'ALTERNATE',
random_function => \&XKPasswd::basic_random_generator,
random_increment => 'AUTO',
},
Expand Down Expand Up @@ -3390,7 +3390,7 @@ keyboard C<#+=>. Below is a sample password generated with this preset:
C<DEFAULT> - the default configuration. Below is a sample password generated
with this preset:
~~12:Settle:Whether:Succeed:Summer:48~~
~~12:settle:SUCCEED:summer:48~~
=item *
Expand Down

0 comments on commit 0512d91

Please sign in to comment.