-
Notifications
You must be signed in to change notification settings - Fork 12
Implement a key store #12
Copy link
Copy link
Open
Description
Although keys can be safely generated inside the library, they cannot be extracted (this is done on purpose), and hence cannot be stored. This is a problem when building real applications that need to be shut down and later restarted.
We must implement a way to store the keys in a file/stream that can be safely exposed. This in particular means encrypting this stream using authenticated encryption, with a key derived from a password.
Reactions are currently unavailable