This repository was archived by the owner on Feb 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
API change: Helper functions to combine/merge keys #2
Copy link
Copy link
Open
Labels
wontfixThis will not be worked onThis will not be worked on
Description
Currently, one of the API functions returns a byte array which is the concatenation of the private and public key respectively.
pub fn keypair_from_seed(seed: &[u8]) -> [u8; KEYPAIR_LENGTH] { ... }
It is the user's duty to properly separate them as documented in the Rust code.
While there also exists another function which does almost the same but only returns the secret/private
portion of the key.
pub fn secret_from_seed(seed: &[u8]) -> [u8; SECRET_KEY_LENGTH] { ... }
Consequently, the sign function is currently accepting the public and private key separately.
pub fn sign(public: &[u8], private: &[u8], message: &[u8]) -> [u8; SIGNATURE_LENGTH] { ... }
Based on the above, I see at least two improvements that could be made:
- is the
secret_from_seed
even needed? - would a sign function that accepts the keypair instead be more handy?
- a set of functions can be exposed to merge/separate keys to facilitate the progress. e.g.
private_from_pair(keypair)
etc.- Though, I believe adding them could be a downgrade of performance as they will 1) pass data back and forth between JS and wasm eventhough its a simple array slice. 2) slightly increase the size of the wasm blob.
Metadata
Metadata
Assignees
Labels
wontfixThis will not be worked onThis will not be worked on