mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
Merge pull request #1270 from j2kun/patch-1
guide_wallets.md: Fix typo, add clarification
This commit is contained in:
commit
a2c3b48178
1 changed files with 4 additions and 3 deletions
|
@ -469,7 +469,7 @@ child, grandchild, and other descended keys with unlinkable
|
||||||
deterministically-generated integer values. Each child key also gets
|
deterministically-generated integer values. Each child key also gets
|
||||||
a deterministically-generated seed from its parent, called a [chain
|
a deterministically-generated seed from its parent, called a [chain
|
||||||
code][/en/glossary/chain-code]{:#term-chain-code}{:.term}, so the compromising of one chain
|
code][/en/glossary/chain-code]{:#term-chain-code}{:.term}, so the compromising of one chain
|
||||||
code doesn't necessary compromise the integer sequence for the whole
|
code doesn't necessarily compromise the integer sequence for the whole
|
||||||
hierarchy, allowing the [master chain
|
hierarchy, allowing the [master chain
|
||||||
code][/en/glossary/master-chain-code-and-private-key]{:#term-master-chain-code}{:.term} to continue being useful
|
code][/en/glossary/master-chain-code-and-private-key]{:#term-master-chain-code}{:.term} to continue being useful
|
||||||
even if, for example, a web-based public key distribution program
|
even if, for example, a web-based public key distribution program
|
||||||
|
@ -499,8 +499,9 @@ respectively, create either a child private key or child public key:
|
||||||
|
|
||||||
{% endautocrossref %}
|
{% endautocrossref %}
|
||||||
|
|
||||||
point( (parent_private_key + lefthand_hash_output) % G ) == child_public_key
|
child_private_key == (parent_private_key + lefthand_hash_output) % G
|
||||||
point(child_private_key) == parent_public_key + point(lefthand_hash_output)
|
child_public_key == point( (parent_private_key + lefthand_hash_output) % G )
|
||||||
|
child_public_key == point(child_private_key) == parent_public_key + point(lefthand_hash_output)
|
||||||
|
|
||||||
{% autocrossref %}
|
{% autocrossref %}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue