DEV Community

Athul A
Athul A

Posted on

Generate Cryptographically-secured password using 12 words mnemonic phrase without storing your password anywhere

Hey guys I have developed an algorithm which will generate cryptographically-secured password using 12 words mnemonic words.
You just need to remember/Write down this 12 words to recover and to get your password for all your needs.
Your passwords are not stored anywhere,It is generated cryptographically using random entropy.

I made a website to generate your 12 words and to generate passwords with it.
At first you need a 12 words mnemonic phrase that will be your master key. DON'T LOSE IT!!!
And after that you need to create a password(Not the one we are generating) which you can remember to create an account, So only with this password and that 12 words you can only get your words. You can have different passwords to create multiple accounts.
For example,
Imagine you have created a 12 words mneomnic phrase, Let us call that as X.
So you need to create a extra password your own and call that 'abc'
So basically X+'abc' can generate different types of password
At the same time you can create another password call it as 'cdf'
X+'cdf' will lead to another different account of your own seed phrase
So you can create any number of accounts
You can use it for several purpose.

So After entering your own password we get into generating the cryptographically secured password which can be used for your credentials
So if you want password for google you can type google in the input box and you will get your password.
If you want another password for google account you can type 'google1' and get that.
You can type anything in the input box and get the password
But you need to remember what you have typed to recover it.
For convenience we type facebook for generating passwords for facebook.

Here is the website I hosted(Please open it in PC,since I didn't add media queries)
Link : https://63597b2a9c97c814225eed2c--quiet-croquembouche-dd4b57.netlify.app/

Here is my github code link
Link : https://github.com/Athulr32/password-gen

if there is any problem with the code like any security issues let me know, And I am planning to make an extension also which will help you to automatically get passwords in the input box when you visit a website and also a mobile app.

So if you guys found any security flows in my code or anything to add more let me know in the comment section.

Thank You :)
Lets meet in comment section!

Top comments (0)