Viewing a response to: @steemitblog/steem-basics-understanding-private-keys-part-1
I never got this one: Master Password (or their Owner Key). Are these two different names for the same thing or I'm missing something?
author | oldtimer |
---|---|
permlink | re-steemitblog-steem-basics-understanding-private-keys-part-1-20190221t051004731z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-02-21 05:10:06 |
last_update | 2019-02-21 05:10:24 |
depth | 1 |
children | 17 |
last_payout | 2019-02-28 05:10:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 135 |
author_reputation | 467,238,930,346,592 |
root_title | "Steem Basics: Understanding Private Keys" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 80,176,502 |
net_rshares | 26,445,171,275 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
direwolf | 0 | 14,421,345,103 | 15% | ||
prinzvalium | 0 | 12,023,826,172 | 1% | ||
hawgwild | 0 | 0 | 100% | ||
home123 | 0 | 0 | 100% | ||
mrakib1965 | 0 | 0 | -100% |
Yes I was confused by this as well for a long time but I'm pretty sure that yes Master/Owner key is the same, then you have the active and the posting key.
author | direwolf |
---|---|
permlink | re-oldtimer-re-steemitblog-steem-basics-understanding-private-keys-part-1-20190221t062217654z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-02-21 06:22:18 |
last_update | 2019-02-21 06:22:18 |
depth | 2 |
children | 15 |
last_payout | 2019-02-28 06:22:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 155 |
author_reputation | 30,767,371,464,103 |
root_title | "Steem Basics: Understanding Private Keys" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,178,802 |
net_rshares | 0 |
@oldtimer, @direwolf: No, they are not the same. Owner Key is derived from the Master Password in a same way as Posting Key. Let's say user `bob` is setting his new Master Password. It will look like this: `P5Hzer2h4R4Lkkjr455T4msnJyjwwmrjLLDYNATMAukM2yehVE6R`. Steem blockchain however, doesn't know anything about Master Password as such. It uses keys, such as Posting Key, Active Key, Owner Key that are **derived** from the Master Password. In such case `bob` will have: Private Owner Key: `5JiD4BEytbFWMGeN3Zk9JfFFgFCTvfcDhDGReG7jt2DREY8JzMa` Private Active Key: `5K6p5g2ob577bA53qgLMGDGY3L3D7M4ccaY2qFSJppgEvJkeLFn` Private Posting Key: `5KW5yYgmPf7bRn6BFEWboLr9bj4QtmVJMNAm2SiErDN5BCGtWH5` How I know it? There's a `cli_wallet` functionality that lets you derive key pairs from the Master Password. It's used for convenience, as you need to securely store one, instead all four. To derive Owner Key from Master Password, `bob` would need to use: `get_private_key_from_password bob owner P5Hzer2h4R4Lkkjr455T4msnJyjwwmrjLLDYNATMAukM2yehVE6R` Same for every role. In fact you don't need to have Master Password at all. Your private keys can be generated and changed independently.
author | gtg |
---|---|
permlink | re-direwolf-re-oldtimer-re-steemitblog-steem-basics-understanding-private-keys-part-1-20190221t065649270z |
category | steem |
json_metadata | {"tags":["steem"],"users":["oldtimer","direwolf"],"app":"steemit/0.1"} |
created | 2019-02-21 06:56:48 |
last_update | 2019-02-21 06:56:48 |
depth | 3 |
children | 14 |
last_payout | 2019-02-28 06:56:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.250 HBD |
curator_payout_value | 0.415 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,187 |
author_reputation | 461,808,784,648,801 |
root_title | "Steem Basics: Understanding Private Keys" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,179,983 |
net_rshares | 3,120,012,654,749 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drakos | 0 | 3,020,067,155,171 | 100% | ||
direwolf | 0 | 95,570,915,992 | 100% | ||
teamnepal | 0 | 4,374,583,586 | 100% | ||
sebas10 | 0 | 0 | 100% | ||
eraclea | 0 | 0 | 100% | ||
urielagata | 0 | 0 | 100% | ||
post-modern | 0 | 0 | 100% | ||
anjholer | 0 | 0 | 100% |
What is a cli-wallet and where can I find it? > **There's a cli_wallet functionality** that lets you derive key pairs from the Master Password. It's used for convenience, as you need to securely store one, instead all four. **To derive Owner Key from Master Password, bob would need to use: get_private_key_from_password bob owner P5Hzer2h4R4Lkkjr455T4msnJyjwwmrjLLDYNATMAukM2yehVE6R**
author | direwolf |
---|---|
permlink | re-gtg-re-direwolf-re-oldtimer-re-steemitblog-steem-basics-understanding-private-keys-part-1-20190221t075736468z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-02-21 07:57:36 |
last_update | 2019-02-21 07:57:36 |
depth | 4 |
children | 1 |
last_payout | 2019-02-28 07:57:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.034 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 386 |
author_reputation | 30,767,371,464,103 |
root_title | "Steem Basics: Understanding Private Keys" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,182,072 |
net_rshares | 85,607,374,171 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 85,607,374,171 | 1% |
Thanks for the info. And where is the master password? Never seen it. I only got the four keys.
author | prinzvalium |
---|---|
permlink | re-gtg-re-direwolf-re-oldtimer-re-steemitblog-steem-basics-understanding-private-keys-part-1-20190221t072321691z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-02-21 07:23:21 |
last_update | 2019-02-21 07:23:21 |
depth | 4 |
children | 11 |
last_payout | 2019-02-28 07:23:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 95 |
author_reputation | 94,983,278,777,634 |
root_title | "Steem Basics: Understanding Private Keys" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,180,899 |
net_rshares | 0 |
To oldtimer(74) Another old timer with some steem power and experience and you don't know either that's puzzling a minnow like me does not have a chance it seems. I wish I could give you the answer. Another fear of mine is bungling around and making the same mistake 3 or so times and lock myself out of my own blog and wallet sites. I thought I was locked out an hour ago, luckily I recorded all these keys and codes on paper 3 months ago. I had to try 3 of them and finally the type fest ended. whoever is implementing these changes would slow down so us Minnows can have some fun Please
author | hawgwild |
---|---|
permlink | re-oldtimer-re-steemitblog-steem-basics-understanding-private-keys-part-1-20190410t190105930z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-04-10 19:01:15 |
last_update | 2019-04-10 19:04:48 |
depth | 2 |
children | 0 |
last_payout | 2019-04-17 19:01:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 592 |
author_reputation | 19,218,525,170 |
root_title | "Steem Basics: Understanding Private Keys" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,828,488 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jackschwartz | 0 | 0 | 100% |