I made another tiny tool: Steem Account Keys and Password Generator
What it does:
- generate a suggested (strong, secure) password for you to use
- 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
The Core dSteem code to Retrieve Keys from Master Password is:
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:
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
Thank you for your service, as always.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Glad it helps!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
amazing job my friend @justyy
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
My Tools are Monetary Tools, to measure Wealth...
Look for a Monetary Reset to "Sound Money"...
May 28, 2020... 9.4 Hollywood Time...
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
good job. thanks.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit