all: rename D to d as per SEC convention

This commit is contained in:
Daniel Cousens 2014-06-07 18:24:16 +10:00
parent 6b55ab4d04
commit eb3a6bcb31
12 changed files with 70 additions and 69 deletions

View file

@ -10,20 +10,20 @@ var fixtures = require('./fixtures/hdnode.json')
describe('HDNode', function() {
describe('Constructor', function() {
var D = BigInteger.ONE
var Q = ecparams.getG().multiply(D)
var d = BigInteger.ONE
var Q = ecparams.getG().multiply(d)
var chainCode = new Buffer(32)
chainCode.fill(1)
it('calculates the publicKey from a BigInteger', function() {
var hd = new HDNode(D, chainCode)
var hd = new HDNode(d, chainCode)
assert(hd.pubKey.Q.equals(Q))
})
it('only uses compressed points', function() {
var hd = new HDNode(Q, chainCode)
var hdP = new HDNode(D, chainCode)
var hdP = new HDNode(d, chainCode)
assert.strictEqual(hd.pubKey.compressed, true)
assert.strictEqual(hdP.pubKey.compressed, true)
@ -50,7 +50,7 @@ describe('HDNode', function() {
it('throws an exception when an unknown network is given', function() {
assert.throws(function() {
new HDNode(D, chainCode, {})
new HDNode(d, chainCode, {})
}, /Unknown BIP32 constants for network/)
})
})