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:
Aaron Toponce 2018-04-09 11:52:19 -06:00
parent d612d532be
commit 92a1da77f9
No known key found for this signature in database
GPG key ID: CE7911B7FC04088F

View file

@ -129,9 +129,9 @@
<div class="btn-group-lg" role="group" aria-label="..."> <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-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-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-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-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> <button id="button-dice-8" type="button" class="btn btn-default dice_button">8</button>
</div> </div>