-
Notifications
You must be signed in to change notification settings - Fork 444
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
Limit ENT to 128-256, multiple of 4 (cont.) #49
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
f55f62f
move helper function definitions before usage
dcousens ed79ca8
tests: add missing Error prefix
dcousens 6a8d7c9
tests: show mnemonic in test desc.
dcousens 950ce92
README/tests: isolate README tests to new file
dcousens 5bf0b64
enforce 128-256 size ENT, multiple of 4
dcousens dcf3c1b
remove inline use of parseInt
dcousens 3854893
remove double iteration of words
dcousens bb6bd4c
TypeErrors for entropy length
dcousens e908612
consistent checksumBits naming
dcousens c1e8093
check entropyBytes for ENT constraints, for readability
dcousens 59cfe5d
package: standard 9 to avoid safe-buffer issues
dcousens 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 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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,42 @@ | ||
var bip39 = require('../') | ||
var proxyquire = require('proxyquire') | ||
var test = require('tape') | ||
|
||
test('README example 1', function (t) { | ||
// defaults to BIP39 English word list | ||
var entropy = 'ffffffffffffffffffffffffffffffff' | ||
var mnemonic = bip39.entropyToMnemonic(entropy) | ||
|
||
t.plan(2) | ||
t.equal(mnemonic, 'zoo zoo zoo zoo zoo zoo zoo zoo zoo zoo zoo wrong') | ||
|
||
// reversible | ||
t.equal(bip39.mnemonicToEntropy(mnemonic), entropy) | ||
}) | ||
|
||
test('README example 2', function (t) { | ||
var stub = { | ||
randombytes: function (size) { | ||
return new Buffer('qwertyuiopasdfghjklzxcvbnm[];,./'.slice(0, size)) | ||
} | ||
} | ||
var proxiedbip39 = proxyquire('../', stub) | ||
|
||
// mnemonic strength defaults to 128 bits | ||
var mnemonic = proxiedbip39.generateMnemonic() | ||
|
||
t.plan(2) | ||
t.equal(mnemonic, 'imitate robot frame trophy nuclear regret saddle around inflict case oil spice') | ||
t.equal(bip39.validateMnemonic(mnemonic), true) | ||
}) | ||
|
||
test('README example 3', function (t) { | ||
var mnemonic = 'basket actual' | ||
var seed = bip39.mnemonicToSeed(mnemonic) | ||
var seedHex = bip39.mnemonicToSeedHex(mnemonic) | ||
|
||
t.plan(3) | ||
t.equal(seed.toString('hex'), seedHex) | ||
t.equal(seedHex, '5cf2d4a8b0355e90295bdfc565a022a409af063d5365bb57bf74d9528f494bfa4400f53d8349b80fdae44082d7f9541e1dba2b003bcfec9d0d53781ca676651f') | ||
t.equal(bip39.validateMnemonic(mnemonic), false) | ||
}) |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not really needed here, would be caught by
entropyToMnemonic
, alas lets save the RNG some time?