Strengthen the use of the Master Password.

- Use 30k iterations instead of 1.
- Enforce minimum password length of 8 characters.
- Adjust strength meter accordingly.

This resolves #82.
This commit is contained in:
wolfbeast 2018-04-18 14:05:21 +02:00 committed by Roy Tam
commit 522a346ef8
4 changed files with 16 additions and 9 deletions

View file

@ -34,7 +34,7 @@
<rows>
<row>
<label control="oldpw">&setPassword.oldPassword.label;</label>
<textbox id="oldpw" type="password"/>
<textbox id="oldpw" type="password" size="18"/>
<!-- This textbox is inserted as a workaround to the fact that making the 'type'
& 'disabled' property of the 'oldpw' textbox toggle between ['password' &
'false'] and ['text' & 'true'] - as would be necessary if the menu has more
@ -46,12 +46,13 @@
</row>
<row>
<label control="pw1">&setPassword.newPassword.label;</label>
<textbox id="pw1" type="password"
<textbox id="pw1" type="password" size="18"
oninput="setPasswordStrength(); checkPasswords();"/>
</row>
<row>
<label control="pw2">&setPassword.reenterPassword.label;</label>
<textbox id="pw2" type="password" oninput="checkPasswords();"/>
<textbox id="pw2" type="password" size="18"
oninput="checkPasswords();"/>
</row>
</rows>
</grid>