Don't show * mask when entering password (#23)

- The * mask has the potential to leak the users password length and
should not be used.

Fixes #8
This commit is contained in:
Casey Watson 2018-08-16 14:01:25 -06:00 committed by Kyle Spearrin
parent e3c2be9e84
commit 4b99745114
3 changed files with 0 additions and 3 deletions

View File

@ -18,7 +18,6 @@ export class ExportCommand {
type: 'password',
name: 'password',
message: 'Master password:',
mask: '*',
});
password = answer.password;
}

View File

@ -41,7 +41,6 @@ export class LoginCommand {
type: 'password',
name: 'password',
message: 'Master password:',
mask: '*',
});
password = answer.password;
}

View File

@ -20,7 +20,6 @@ export class UnlockCommand {
type: 'password',
name: 'password',
message: 'Master password:',
mask: '*',
});
password = answer.password;
}