Another Tiny Tool:  Steem Account Keys and Password Generator

Another Tiny Tool: Steem Account Keys and Password Generator

I made another tiny tool: Steem Account Keys and Password Generator
What it does:

  1. generate a suggested (strong, secure) password for you to use
  2. retreive (both public and private) owner, posting, active, memo keys from your master password.

It is a one-page HTML tool. There is no login involved. Your password stays in the current page (your local browser) . There is no point to panic!

Tool URL: https://steemyy.com/keys/
Chinese Version: https://steemyy.com/account-keys/
The tool is based on dSteem v0.8.6

image.png

The Core dSteem code to Retrieve Keys from Master Password is:

1
2
3
4
const ownerKey = dsteem.PrivateKey.fromLogin(username, password, 'owner');
const activeKey = dsteem.PrivateKey.fromLogin(username, password, 'active');
const postingKey = dsteem.PrivateKey.fromLogin(username, password, 'posting');
const memoKey = dsteem.PrivateKey.fromLogin(username, password, 'memo');

The Suggested Password Source code:

1
2
3
4
5
function suggestPassword() { 
const array = new Uint32Array(10);
window.crypto.getRandomValues(array);
return 'P' + dsteem.PrivateKey.fromSeed(array).toString();
}


I hope this helps!

Steem On!~

If you like my work, please consider voting for me, thanks!
https://steemit.com/~witnesses type in justyy and click VOTE



Alternatively, you could proxy to me if you are too lazy to vote!

Also: you can vote me at the tool I made: https://steemyy.com/witness-voting/?witness=justyy

Visit me at: https://steemyy.com


This page is synchronized from the post: ‘Another Tiny Tool: Steem Account Keys and Password Generator’

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×