-
Notifications
You must be signed in to change notification settings - Fork 4
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
Key material storage #18
Comments
Some thoughts: Where to store
How to store
|
For the immediate/short term we need whatever was available in Zcashd. Although that can be hassle to undo once deployed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In
zcashd
, spending key material (and the HD seed it was derived from where relevant) were stored in the same BDB database as the rest of the wallet data.zcash_client_sqlite
(which Zallet uses as its backend) is designed to never store spending key material, due to its history as the backing library for the mobile SDKs. On mobile devices, platform-level keystores exist which are ideal for storing seed phrases or key material. However, Zallet is a desktop wallet, and therefore cannot assume the presence of these kinds of affordances.We therefore need to decide where and how to store key material in Zallet.
The text was updated successfully, but these errors were encountered: