Skip to content
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

merge rivine fork #13

Merged
merged 5 commits into from
Jul 16, 2018
Merged

merge rivine fork #13

merged 5 commits into from
Jul 16, 2018

Conversation

GlenDC
Copy link
Contributor

@GlenDC GlenDC commented Jul 14, 2018

In this PR you'll find all useful changes that we made in the Rivine fork, applied to your go-bip39 library as it is in master.

As discussed in #7 (comment).

GlenDC and others added 5 commits July 14, 2018 23:36
+ generate a slice only when needed (most likely always)
+ ensure protection against negative offsets
+ generate the final output size at once, to avoid a double-alloc
the EntropyFromMnemonic function allows you to create an entropy byte slice,
recovered from an earlier generated mnemonic using that entropy
@GlenDC
Copy link
Contributor Author

GlenDC commented Jul 14, 2018

Once this PR has been merged, I'll delete our fork and use your library directly for the Rivine blockchain project.

Furthermore I would also be more than happy to help maintain this library where needed, given that we rely on it for a couple of projects, we would help ourselves as well, by helping out as a maintainer. If you agree, feel free to give me the required rights to help you do so.

@tyler-smith
Copy link
Owner

Merged ce3d5bb, 59d8316 , and 4028094.

4028094 is fine but has conflicts with b995a0b.

b995a0b I don't understand. It appears to be providing a function (EntropyFromMnemonic) which is exactly like the already existent MnemonicToByteArray function. Is there a reason for both? Do you think one naming convention is better than the other or do they do something different that I'm missing?

Copy link
Owner

@tyler-smith tyler-smith left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I merged everything except EntropyFromMnemonic which is nearly identical to the existing MnemonicToByteArray. I do think EntropyFromMnemonic is a bit nicer but i'd hate to pollute the API. Do you think you couldl live with just having MnemonicToByteArray until we can get a V2 API going?

@GlenDC
Copy link
Contributor Author

GlenDC commented Jul 16, 2018

1f6c1d8 provides the EntropyFromMnemonic function, not b995a0b. Unless I misunderstand something in #13 (comment), I think you made some mistakes in the commit ID referencing.

Also as far as I understand, MnemonicToByteArray creates a new seed from a mnemonic, while EntropyFromMnemonic (the one I add in 1f6c1d8) recovers the old seed used, which was used to generate the given mnemonic.

You'll see the difference in effect immediately if you replace 1f6c1d8#diff-8308e211b6db3deb5bcefc410e02f7f9R437 with outEntropy, err := MnemonicToByteArray(mnemonic). You'll notice the unit test will fail, as you generated a new seed (entropy), rather than recovering the old (original) one.

Do you think you couldl live with just having MnemonicToByteArray until we can get a V2 API going?

Nope, I need this now, as I need to be able to recover a seed from a mnemonic, otherwise I'll have to keep using our fork.

@tyler-smith
Copy link
Owner

1f6c1d8 provides the EntropyFromMnemonic function, not b995a0b. Unless I misunderstand something in #13 (comment), I think you made some mistakes in the commit ID referencing.

You're correct. I copy/pasted the wrong hash.

I see what this is doing, and it's very inline with where I want to go. Eventually I want to remove MnemonicToByteArray and have the interface just be conversions between entropy and mnemonics and the seed generation function. In v2, this function may be bip39.Unmarshal("abandon ...") ([]byte, error) along a functionbip39.Marshal(entropy []bytes) error

Thanks for the addition.

@tyler-smith tyler-smith merged commit 95c6672 into tyler-smith:master Jul 16, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants