-
Notifications
You must be signed in to change notification settings - Fork 182
ZIP 325: Account Metadata Keys #979
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
00efeba
Initial ZIP draft for Account Metadata Keys
str4d deb8333
Apply copy-editing suggestions from review
daira 0b66580
Formatting and variable name changes from review
str4d ab459c7
Assign ZIP 325 to draft-str4d-account-metadata-keys
str4d b9b7366
ZIP 325: Apply rewording to Motivation from review
str4d dc6fb14
ZIP 325: Fix typo in private use child index constant
str4d b96218b
ZIP 325: Clarify wording around how UFVK is used
str4d 070c185
Render manually, while the CI-based rendering is broken
str4d File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,198 @@ | ||
|
|
||
| ZIP: Unassigned | ||
| Title: Account Metadata Keys | ||
| Owners: Jack Grigg <jack@electriccoin.co> | ||
| Daira-Emma Hopwood <daira@electriccoin.co> | ||
| Kris Nuttycombe <kris@electriccoin.co> | ||
| Status: Draft | ||
| Category: Standards / Wallet | ||
| Created: 2025-02-18 | ||
| License: MIT | ||
|
|
||
|
|
||
| # Terminology | ||
|
|
||
| The key words "MUST NOT", "SHOULD", and "MAY" in this | ||
| document are to be interpreted as described in BCP 14 [^BCP14] when, and | ||
| only when, they appear in all capitals. | ||
|
|
||
|
|
||
| # Abstract | ||
|
|
||
| This ZIP specifies the key tree for Account Metadata Keys. These are derived | ||
| from the same seed as a ZIP 32 [^zip-0032] account, and can be used by wallets | ||
| to derive encryption keys for local / off-chain metadata. | ||
|
|
||
|
|
||
| # Motivation | ||
|
|
||
| A wallet's main data source is the Zcash chain: from this it can detect notes | ||
| received by an account, determine whether those notes are spent, build witnesses | ||
| for spending, recover on-chain memo data, and so on. However, wallets also | ||
| generate significant quantities of off-chain metadata as they are used, such as: | ||
|
|
||
| - Local notes about transactions in the wallet. | ||
|
daira marked this conversation as resolved.
Outdated
|
||
| - Mappings from Zcash addresses to user-meaningful recipient names. | ||
|
daira marked this conversation as resolved.
Outdated
|
||
| - The exchange rate from ZEC to another currency that was used to determine how | ||
| much ZEC to send in a payment. | ||
|
|
||
| This metadata is valuable to users, and highly desirable to ensure is backed up. | ||
|
daira marked this conversation as resolved.
Outdated
|
||
| If the user's device is wiped or lost and the user recovers their wallet from a | ||
| backed-up mnemonic phrase, they will lose all of this metadata if it is not | ||
| stored somewhere. | ||
|
|
||
| For other kinds of phone data, it is expected by users that their phone's normal | ||
| backup storage will have saved (most of) their data, such that access to e.g. | ||
| their Apple or Google account will be sufficient for data recovery. However, | ||
| metadata like mappings from Zcash addresses to recipient names can be | ||
| particularly sensitive, meaning that users may not want it to be backed up | ||
|
daira marked this conversation as resolved.
Outdated
|
||
| unencrypted in their phone's normal backup storage. Similarly, the inability to | ||
| alter on-chain data means that permanently storing metadata in transaction memo | ||
| fields may also not be an option. | ||
|
|
||
| Additionally, it is currently the case that users only need to back up a single | ||
| secret (a mnemonic seed phrase), once, in order to recover all information for | ||
| accounts derived from that secret. If metadata were encrypted using independent | ||
| key material, these keys would also need to be backed up, leading to fragility | ||
| of wallet restoration. | ||
|
|
||
|
|
||
| # Requirements | ||
|
|
||
| - The user should not need to update their existing backups of secret material. | ||
| - It should be possible to store metadata about accounts for which we don't | ||
| control spend authority (i.e. imported UFVKs). | ||
| - The key tree must be future-extensible. | ||
|
|
||
|
|
||
| # Specification | ||
|
|
||
| ## Metadata key tree | ||
|
|
||
| This ZIP registers the following ZIP 32 Registered Key Derivation [^zip-0032-rkd] | ||
| tree: | ||
|
|
||
| - $\mathsf{ContextString} = \texttt{“MetadataKeys”}$ | ||
| - ZIP number: TBD | ||
|
str4d marked this conversation as resolved.
Outdated
|
||
|
|
||
| The tree has the following general structure, specified in more detail below: | ||
|
|
||
| - $m_{\mathsf{metadata}}$: Metadata Key tree | ||
| - $m_{\mathsf{metadata}} / TBD' / \mathsf{coinType}' / \mathsf{account}'$ - Account Metadata Key | ||
| - $\ldots / 0'$ - Account-level Inherent Metadata Key | ||
| - $\ldots / \ldots$ - (Reserved for future updates to this ZIP) | ||
| - $\ldots / \texttt{0x7FFFFFFFF}' \# \texttt{PrivateSubject}$ - Private-use Inherent Metadata Key | ||
|
daira marked this conversation as resolved.
Outdated
|
||
| - $\ldots / 1'$ - Account-level External Metadata Key | ||
| - $\ldots / 0' \# \langle FVKTypedItem \rangle$ - Imported UFVK Metadata Key | ||
|
daira marked this conversation as resolved.
Outdated
|
||
| - $\ldots / \ldots$ - (Reserved for future updates to this ZIP) | ||
| - $\ldots / \texttt{0x7FFFFFFFF}' \# \texttt{PrivateSubject}$ - Private-use External Metadata Key | ||
|
daira marked this conversation as resolved.
Outdated
|
||
| - $\ldots / \ldots$ - (Reserved for future updates to this ZIP) | ||
| - $\ldots / \ldots$ - (Reserved for future updates to this ZIP) | ||
|
|
||
| Non-leaf keys in the key tree MUST NOT be used directly to encrypt metadata. | ||
| Encryption keys are leaves in this key tree. The sole exception to this is | ||
| private-use keys (for which part of their key derivation is outside the scope of | ||
| this specification): encryption keys MAY be derived from the private-use key | ||
| leaves. | ||
|
|
||
| ### Account Metadata Key | ||
|
|
||
| The Account Metadata Key is the root of a subtree that corresponds to a ZIP 32 | ||
| account represented elsewhere in the overall tree. It is derived from the seed | ||
| $\mathsf{S}$ as: | ||
|
|
||
| $\mathsf{AccountMetadataKey} = \mathsf{CKDreg}(\mathsf{CKDreg}(\mathsf{RegKD}(\texttt{“MetadataKeys”}, \mathsf{S}, \mathsf{ZipNumber}), \mathsf{coinType}, [\,]), \mathsf{account}, [\,])$ | ||
|
|
||
| or, in path notation: | ||
|
|
||
| ``` | ||
| m_metadata / TBD' / coin_type' / account' | ||
| ``` | ||
|
|
||
| ### Inherent metadata keys | ||
|
|
||
| The Account-level Inherent Metadata Key's subtree contains keys used for | ||
| metadata associated with the Account Metadata Key's corresponding account. The | ||
| key is derived as: | ||
|
|
||
| $\mathsf{CKDreg}(\mathsf{AccountMetadataKey}, 0, [\,])$ | ||
|
|
||
| ### External metadata keys | ||
|
|
||
| The Account-level External Metadata Key's subtree contains keys used for | ||
| metadata associated with imported UFVKs. Unlike the inherent metadata keys which | ||
| can leverage the inherent domain separation provided by the account index, here | ||
| domain separation between metadata keys is provided by the UFVKs themselves. | ||
|
|
||
| As UFVKs may in general change over time (due to the inclusion of new | ||
| higher-preference FVK items, or removal of older deprecated FVK items), there is | ||
| no guarantee that the exact same set of FVK items will be present at both backup | ||
| creation time and recovery time. Instead, the most-preferred FVK item within a | ||
|
daira marked this conversation as resolved.
Outdated
|
||
| UFVK is used as the domain separator, and the Imported UFVK Metadata Key is | ||
| derived as: | ||
|
|
||
| $\mathsf{CKDreg}(\mathsf{CKDreg}(\mathsf{AccountMetadataKey}, 1, [\,]), 0, \langle FVKTypedItem \rangle)$ | ||
|
daira marked this conversation as resolved.
Outdated
|
||
|
|
||
| where $\langle FVKTypedItem \rangle$ is the encoding of the most preferred FVK | ||
|
daira marked this conversation as resolved.
Outdated
|
||
| item within the ZIP 316 raw encoding of a UFVK. [^zip-0316] | ||
|
|
||
| Usage of the Imported UFVK Metadata Key trees SHOULD follow ZIP 316 preference | ||
| order: [^zip-0316] | ||
|
|
||
| - For encryption-like usage, the key tree corresponding to the most preferred | ||
| FVK item within a UFVK SHOULD be used. | ||
| - For decryption-like usage, each key tree SHOULD be tried in preference order | ||
| until metadata can be recovered. If metadata is recovered via an FVK item that | ||
| is not the most preferred, wallets SHOULD update their metadata backups by | ||
| re-encrypting the metadata using the key tree corresponding to most preferred | ||
| FVK item. | ||
|
daira marked this conversation as resolved.
Outdated
daira marked this conversation as resolved.
Outdated
|
||
|
|
||
| ## Standardised metadata protocols | ||
|
|
||
| The following metadata protocols have been standardised: | ||
|
|
||
| - None at time of writing. | ||
|
|
||
| The remaining range of child indices from 0 to $\texttt{0x7FFFFFFFE}$ inclusive | ||
| are reserved for future updates to this ZIP. Wallet developers can propose new | ||
| standardised metadata protocols by writing a 2000-series ZIP that specifies the | ||
| protocol as an update to this ZIP. | ||
|
|
||
| ## Private use metadata keys | ||
|
daira marked this conversation as resolved.
Outdated
|
||
|
|
||
| In some contexts there is a need for deriving ad-hoc key trees for private use | ||
| by wallets, without ecosystem coordination and without any kind of compatibility | ||
| guarantees. This ZIP reserves child index $\texttt{0x7FFFFFFFF}$ (the maximum | ||
|
daira marked this conversation as resolved.
Outdated
|
||
| valid hardened child index) within its key tree for this purpose. | ||
|
|
||
| - Let $K$ be either the Account-level Inherent Metadata Key, or an Imported UFVK | ||
| Metadata Key. | ||
| - Let $\mathsf{PrivateSubject}$ be a globally-unique non-empty sequence of at | ||
| most 252 bytes that identifies the desired private use context. | ||
|
daira marked this conversation as resolved.
Outdated
|
||
| - Return $\mathsf{CKDreg}(K, \texttt{0x7FFFFFFFF}, \mathsf{PrivateSubject})$ | ||
|
daira marked this conversation as resolved.
Outdated
|
||
|
|
||
| :::warning | ||
| It is the responsibility of wallet developers to ensure that they do not use | ||
| colliding $\mathsf{PrivateSubject}$ values, and to analyse their private use for | ||
|
str4d marked this conversation as resolved.
Outdated
|
||
| any security risks related to potential cross-protocol attacks (in the event that | ||
| two wallet developers happen to select a colliding $\mathsf{PrivateSubject}$). | ||
|
str4d marked this conversation as resolved.
Outdated
|
||
| Wallet developers that are unwilling to accept these risks SHOULD propose new | ||
| standardised metadata protocols instead, to benefit from ecosystem coordination | ||
| and review. | ||
| ::: | ||
|
|
||
|
|
||
| # Reference implementation | ||
|
|
||
| - https://github.com/Electric-Coin-Company/zcash-android-wallet-sdk/pull/1686 | ||
|
|
||
|
|
||
| # References | ||
|
|
||
| [^BCP14]: [Information on BCP 14 — "RFC 2119: Key words for use in RFCs to Indicate Requirement Levels" and "RFC 8174: Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words"](https://www.rfc-editor.org/info/bcp14) | ||
|
|
||
| [^zip-0032]: [ZIP 32: Shielded Hierarchical Deterministic Wallets](zip-0032.rst) | ||
|
|
||
| [^zip-0032-rkd]: [ZIP 32: Shielded Hierarchical Deterministic Wallets, Section: Registered key derivation](zip-0032.rst#specification-registered-key-derivation) | ||
|
|
||
| [^zip-0316]: [ZIP 316: Unified Addresses and Unified Viewing Keys](zip-0316.rst) | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.