This project is an attempt to be a password vault that can generate deterministically pseudorandom password outputs to different applications a user may have, based off of no outside data or other exterior input.
Because it does this deterministically, no personal data needs to be stored anywhere, so there's no danger of passwords being "leaked" or stolen. All that is required is that the user remembers their seed phrase, and that this seed phrase is obscure or random enough that it is implausible a would-be attacker could figure it out.
This project is a WIP, updates and screenshots can be seen below.
Remove "Calculate" button/column, as it calculates automaticallyAdd "Length" column with + and - buttons (default value: 12)- Ability to save and load user configuration settings locally
- Ability to add, edit, and delete rows
Added an Add and a Delete button. Both do exactly as you'd expect.
Adds rows dynamically based on data found in the file data.txt which is in the js/ folder and is in JSON format.
[
{
"site": "YouTube",
"char_length": "12",
"number": 1
},
{
"site": "Facebook",
"char_length": "10",
"number": 3
},
{
"site": "LinkedIn",
"char_length": "14",
"number": 4
}
]
It now adds rows dynamically based on a "data" list in the JS file.
const data = ['YouTube', 'Facebook', 'Third', 'Fourth', 'Fifth'];
Made it prettier/fancier.
Added Length column to specify the desired character length of passwords. By default, this value is set to 12.
Removed Calculate button/column. It was redundant because the password is automatically calculated upon launching the application, and passwords are automatically recalculated anytime any value is changed (seed phrase, number, etc.).
Completed first draft.