mirror of
https://github.com/dmuth/diceware.git
synced 2024-11-23 17:26:34 -05:00
Increase default number of dice rolls from 4 to 6
Diceware provides about 12.92 bits of entropy per word. Best practice for passwords is to reach at least 70 bits of entropy to stay outside of successful clustered offline password cracking. 4 Diceware words: ~51.6 bits 5 Diceware words: ~64.6 bits 6 Diceware words: ~77.5 bits
This commit is contained in:
parent
d612d532be
commit
92a1da77f9
1 changed files with 2 additions and 2 deletions
|
@ -129,9 +129,9 @@
|
|||
<div class="btn-group-lg" role="group" aria-label="...">
|
||||
<button id="button-dice-2" type="button" class="btn btn-default dice_button">2</button>
|
||||
<button id="button-dice-3" type="button" class="btn btn-default dice_button">3</button>
|
||||
<button id="button-dice-4" type="button" class="btn btn-default dice_button active">4</button>
|
||||
<button id="button-dice-4" type="button" class="btn btn-default dice_button">4</button>
|
||||
<button id="button-dice-5" type="button" class="btn btn-default dice_button">5</button>
|
||||
<button id="button-dice-6" type="button" class="btn btn-default dice_button">6</button>
|
||||
<button id="button-dice-6" type="button" class="btn btn-default dice_button active">6</button>
|
||||
<button id="button-dice-7" type="button" class="btn btn-default dice_button">7</button>
|
||||
<button id="button-dice-8" type="button" class="btn btn-default dice_button">8</button>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue