HDNode: enforces sane seed lengths

This commit is contained in:
Daniel Cousens 2014-07-11 16:33:39 +10:00
parent 656de37fc0
commit ddcde038d0
2 changed files with 16 additions and 0 deletions

View file

@ -65,6 +65,18 @@ describe('HDNode', function() {
assert.equal(hd.chainCode.toString('hex'), f.master.chainCode)
})
})
it('throws on low entropy seed', function() {
assert.throws(function() {
HDNode.fromSeedHex('ffffffffff')
}, /Seed should be atleast 128 bits/)
})
it('throws on too high entropy seed', function() {
assert.throws(function() {
HDNode.fromSeedHex('ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff')
}, /Seed should be atmost 512 bits/)
})
})
describe('toBase58', function() {