571 lines
12 KiB
JavaScript
571 lines
12 KiB
JavaScript
/*!
|
|
* public.js - hd public keys for bcoin
|
|
* Copyright (c) 2015-2016, Christopher Jeffrey (MIT License).
|
|
* https://github.com/bcoin-org/bcoin
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var util = require('../utils/util');
|
|
var crypto = require('../crypto/crypto');
|
|
var ec = require('../crypto/ec');
|
|
var assert = require('assert');
|
|
var constants = require('../protocol/constants');
|
|
var networks = require('../protocol/networks');
|
|
var Network = require('../protocol/network');
|
|
var BufferWriter = require('../utils/writer');
|
|
var BufferReader = require('../utils/reader');
|
|
var base58 = require('../utils/base58');
|
|
var common = require('./common');
|
|
|
|
/*
|
|
* Constants
|
|
*/
|
|
|
|
var FINGER_PRINT = new Buffer('00000000', 'hex');
|
|
|
|
/**
|
|
* HDPublicKey
|
|
* @exports HDPublicKey
|
|
* @constructor
|
|
* @param {Object|Base58String} options
|
|
* @param {Base58String?} options.xkey - Serialized base58 key.
|
|
* @param {Number?} options.depth
|
|
* @param {Buffer?} options.parentFingerPrint
|
|
* @param {Number?} options.childIndex
|
|
* @param {Buffer?} options.chainCode
|
|
* @param {Buffer?} options.publicKey
|
|
* @property {Network} network
|
|
* @property {Base58String} xpubkey
|
|
* @property {Number} depth
|
|
* @property {Buffer} parentFingerPrint
|
|
* @property {Number} childIndex
|
|
* @property {Buffer} chainCode
|
|
* @property {Buffer} publicKey
|
|
*/
|
|
|
|
function HDPublicKey(options) {
|
|
if (!(this instanceof HDPublicKey))
|
|
return new HDPublicKey(options);
|
|
|
|
this.network = Network.primary;
|
|
this.depth = 0;
|
|
this.parentFingerPrint = FINGER_PRINT;
|
|
this.childIndex = 0;
|
|
this.chainCode = constants.ZERO_HASH;
|
|
this.publicKey = constants.ZERO_KEY;
|
|
|
|
this.fingerPrint = null;
|
|
|
|
this._xpubkey = null;
|
|
|
|
this.hdPublicKey = this;
|
|
this.hdPrivateKey = null;
|
|
|
|
if (options)
|
|
this.fromOptions(options);
|
|
}
|
|
|
|
/**
|
|
* Inject properties from options object.
|
|
* @private
|
|
* @param {Object} options
|
|
*/
|
|
|
|
HDPublicKey.prototype.fromOptions = function fromOptions(options) {
|
|
assert(options, 'No options for HDPublicKey');
|
|
assert(util.isNumber(options.depth));
|
|
assert(Buffer.isBuffer(options.parentFingerPrint));
|
|
assert(util.isNumber(options.childIndex));
|
|
assert(Buffer.isBuffer(options.chainCode));
|
|
assert(Buffer.isBuffer(options.publicKey));
|
|
|
|
if (options.network)
|
|
this.network = Network.get(options.network);
|
|
|
|
this.depth = options.depth;
|
|
this.parentFingerPrint = options.parentFingerPrint;
|
|
this.childIndex = options.childIndex;
|
|
this.chainCode = options.chainCode;
|
|
this.publicKey = options.publicKey;
|
|
|
|
if (options.xpubkey) {
|
|
assert(typeof options.xpubkey === 'string');
|
|
this._xpubkey = options.xpubkey;
|
|
}
|
|
|
|
return this;
|
|
};
|
|
|
|
/**
|
|
* Instantiate HD public key from options object.
|
|
* @param {Object} options
|
|
* @returns {HDPublicKey}
|
|
*/
|
|
|
|
HDPublicKey.fromOptions = function fromOptions(options) {
|
|
return new HDPublicKey().fromOptions(options);
|
|
};
|
|
|
|
HDPublicKey.prototype.__defineGetter__('xpubkey', function() {
|
|
if (!this._xpubkey)
|
|
this._xpubkey = this.toBase58();
|
|
return this._xpubkey;
|
|
});
|
|
|
|
/**
|
|
* Destroy the key (zeroes chain code and pubkey).
|
|
*/
|
|
|
|
HDPublicKey.prototype.destroy = function destroy() {
|
|
this.depth = 0;
|
|
this.childIndex = 0;
|
|
|
|
crypto.cleanse(this.parentFingerPrint);
|
|
crypto.cleanse(this.chainCode);
|
|
crypto.cleanse(this.publicKey);
|
|
|
|
if (this.fingerPrint) {
|
|
crypto.cleanse(this.fingerPrint);
|
|
this.fingerPrint = null;
|
|
}
|
|
|
|
this._xpubkey = null;
|
|
};
|
|
|
|
/**
|
|
* Derive a child key.
|
|
* @param {Number|String} - Child index or path.
|
|
* @param {Boolean?} hardened - Whether the derivation
|
|
* should be hardened (throws if true).
|
|
* @returns {HDPrivateKey}
|
|
* @throws on `hardened`
|
|
*/
|
|
|
|
HDPublicKey.prototype.derive = function derive(index, hardened, cache) {
|
|
var p, id, data, hash, left, right, key, child;
|
|
|
|
if (typeof hardened !== 'boolean') {
|
|
cache = hardened;
|
|
hardened = false;
|
|
}
|
|
|
|
if (!cache)
|
|
cache = common.cache;
|
|
|
|
if (typeof index === 'string')
|
|
return this.derivePath(index, cache);
|
|
|
|
if (index >= constants.hd.HARDENED || hardened)
|
|
throw new Error('Index out of range.');
|
|
|
|
if (index < 0)
|
|
throw new Error('Index out of range.');
|
|
|
|
if (this.depth >= 0xff)
|
|
throw new Error('Depth too high.');
|
|
|
|
if (cache) {
|
|
id = this.getID(index);
|
|
child = cache.get(id);
|
|
if (child)
|
|
return child;
|
|
}
|
|
|
|
p = new BufferWriter();
|
|
p.writeBytes(this.publicKey);
|
|
p.writeU32BE(index);
|
|
data = p.render();
|
|
|
|
hash = crypto.hmac('sha512', data, this.chainCode);
|
|
left = hash.slice(0, 32);
|
|
right = hash.slice(32, 64);
|
|
|
|
try {
|
|
key = ec.publicKeyTweakAdd(this.publicKey, left, true);
|
|
} catch (e) {
|
|
return this.derive(index + 1, cache);
|
|
}
|
|
|
|
if (!this.fingerPrint)
|
|
this.fingerPrint = crypto.hash160(this.publicKey).slice(0, 4);
|
|
|
|
child = new HDPublicKey();
|
|
child.network = this.network;
|
|
child.depth = this.depth + 1;
|
|
child.parentFingerPrint = this.fingerPrint;
|
|
child.childIndex = index;
|
|
child.chainCode = right;
|
|
child.publicKey = key;
|
|
|
|
if (cache)
|
|
cache.set(id, child);
|
|
|
|
return child;
|
|
};
|
|
|
|
/**
|
|
* Unique HD key ID.
|
|
* @private
|
|
* @param {Number} index
|
|
* @returns {String}
|
|
*/
|
|
|
|
HDPublicKey.prototype.getID = function getID(index) {
|
|
return this.network.keyPrefix.xpubkey58
|
|
+ this.publicKey.toString('hex')
|
|
+ index;
|
|
};
|
|
|
|
/**
|
|
* Derive a BIP44 account key (does not derive, only ensures account key).
|
|
* @method
|
|
* @param {Number} accountIndex
|
|
* @returns {HDPublicKey}
|
|
* @throws Error if key is not already an account key.
|
|
*/
|
|
|
|
HDPublicKey.prototype.deriveAccount44 = function deriveAccount44(accountIndex) {
|
|
assert(this.isAccount44(accountIndex), 'Cannot derive account index.');
|
|
return this;
|
|
};
|
|
|
|
/**
|
|
* Derive a BIP45 purpose key (does not derive, only ensures account key).
|
|
* @method
|
|
* @returns {HDPublicKey}
|
|
* @throws Error if key is not already a purpose key.
|
|
*/
|
|
|
|
HDPublicKey.prototype.derivePurpose45 = function derivePurpose45() {
|
|
assert(this.isPurpose45(), 'Cannot derive purpose 45.');
|
|
return this;
|
|
};
|
|
|
|
/**
|
|
* Test whether the key is a master key.
|
|
* @method
|
|
* @returns {Boolean}
|
|
*/
|
|
|
|
HDPublicKey.prototype.isMaster = function() {
|
|
return common.isMaster(this);
|
|
};
|
|
|
|
/**
|
|
* Test whether the key is (most likely) a BIP44 account key.
|
|
* @method
|
|
* @param {Number?} accountIndex
|
|
* @returns {Boolean}
|
|
*/
|
|
|
|
HDPublicKey.prototype.isAccount44 = function(accountIndex) {
|
|
return common.isAccount44(this, accountIndex);
|
|
};
|
|
|
|
/**
|
|
* Test whether the key is a BIP45 purpose key.
|
|
* @method
|
|
* @returns {Boolean}
|
|
*/
|
|
|
|
HDPublicKey.prototype.isPurpose45 = function() {
|
|
return common.isPurpose45(this);
|
|
};
|
|
|
|
/**
|
|
* Test whether a string is a valid path.
|
|
* @param {String} path
|
|
* @param {Boolean?} hardened
|
|
* @returns {Boolean}
|
|
*/
|
|
|
|
HDPublicKey.isValidPath = function isValidPath(path) {
|
|
if (typeof path !== 'string')
|
|
return false;
|
|
|
|
try {
|
|
common.parsePath(path, constants.hd.HARDENED);
|
|
return true;
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Derive a key from a derivation path.
|
|
* @param {String} path
|
|
* @returns {HDPublicKey}
|
|
* @throws Error if `path` is not a valid path.
|
|
* @throws Error if hardened.
|
|
*/
|
|
|
|
HDPublicKey.prototype.derivePath = function derivePath(path, cache) {
|
|
var indexes = common.parsePath(path, constants.hd.HARDENED);
|
|
var key = this;
|
|
var i;
|
|
|
|
for (i = 0; i < indexes.length; i++)
|
|
key = key.derive(indexes[i], cache);
|
|
|
|
return key;
|
|
};
|
|
|
|
/**
|
|
* Compare a key against an object.
|
|
* @param {Object} obj
|
|
* @returns {Boolean}
|
|
*/
|
|
|
|
HDPublicKey.prototype.equal = function equal(obj) {
|
|
if (!HDPublicKey.isHDPublicKey(obj))
|
|
return false;
|
|
|
|
return this.network === obj.network
|
|
&& this.depth === obj.depth
|
|
&& util.equal(this.parentFingerPrint, obj.parentFingerPrint)
|
|
&& this.childIndex === obj.childIndex
|
|
&& util.equal(this.chainCode, obj.chainCode)
|
|
&& util.equal(this.publicKey, obj.publicKey);
|
|
};
|
|
|
|
/**
|
|
* Compare a key against an object.
|
|
* @param {Object} obj
|
|
* @returns {Boolean}
|
|
*/
|
|
|
|
HDPublicKey.prototype.compare = function compare(key) {
|
|
var cmp;
|
|
|
|
if (!HDPublicKey.isHDPublicKey(key))
|
|
return 1;
|
|
|
|
cmp = this.depth - key.depth;
|
|
|
|
if (cmp !== 0)
|
|
return cmp;
|
|
|
|
cmp = util.cmp(this.parentFingerPrint, key.parentFingerPrint);
|
|
|
|
if (cmp !== 0)
|
|
return cmp;
|
|
|
|
cmp = this.childIndex - key.childIndex;
|
|
|
|
if (cmp !== 0)
|
|
return cmp;
|
|
|
|
cmp = util.cmp(this.chainCode, key.chainCode);
|
|
|
|
if (cmp !== 0)
|
|
return cmp;
|
|
|
|
cmp = util.cmp(this.publicKey, key.publicKey);
|
|
|
|
if (cmp !== 0)
|
|
return cmp;
|
|
|
|
return 0;
|
|
};
|
|
|
|
/**
|
|
* Convert key to a more json-friendly object.
|
|
* @returns {Object}
|
|
*/
|
|
|
|
HDPublicKey.prototype.toJSON = function toJSON() {
|
|
return {
|
|
xpubkey: this.xpubkey
|
|
};
|
|
};
|
|
|
|
/**
|
|
* Inject properties from json object.
|
|
* @private
|
|
* @param {Object} json
|
|
*/
|
|
|
|
HDPublicKey.prototype.fromJSON = function fromJSON(json) {
|
|
assert(json.xpubkey, 'Could not handle HD key JSON.');
|
|
this.fromBase58(json.xpubkey);
|
|
return this;
|
|
};
|
|
|
|
/**
|
|
* Instantiate an HDPrivateKey from a jsonified key object.
|
|
* @param {Object} json - The jsonified transaction object.
|
|
* @returns {HDPrivateKey}
|
|
*/
|
|
|
|
HDPublicKey.fromJSON = function fromJSON(json) {
|
|
return new HDPublicKey().fromJSON(json);
|
|
};
|
|
|
|
/**
|
|
* Test whether an object is in the form of a base58 xpubkey.
|
|
* @param {String} data
|
|
* @returns {Boolean}
|
|
*/
|
|
|
|
HDPublicKey.isBase58 = function isBase58(data) {
|
|
var i, type, prefix;
|
|
|
|
if (typeof data !== 'string')
|
|
return false;
|
|
|
|
for (i = 0; i < networks.types.length; i++) {
|
|
type = networks.types[i];
|
|
prefix = networks[type].keyPrefix.xpubkey58;
|
|
if (data.indexOf(prefix) === 0)
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
};
|
|
|
|
/**
|
|
* Test whether a buffer has a valid network prefix.
|
|
* @param {Buffer} data
|
|
* @returns {NetworkType}
|
|
*/
|
|
|
|
HDPublicKey.isRaw = function isRaw(data) {
|
|
var i, version, prefix, type;
|
|
|
|
if (!Buffer.isBuffer(data))
|
|
return false;
|
|
|
|
version = data.readUInt32BE(0, true);
|
|
|
|
for (i = 0; i < networks.types.length; i++) {
|
|
type = networks.types[i];
|
|
prefix = networks[type].keyPrefix.xpubkey;
|
|
if (version === prefix)
|
|
return type;
|
|
}
|
|
|
|
return false;
|
|
};
|
|
|
|
/**
|
|
* Inject properties from a base58 key.
|
|
* @private
|
|
* @param {Base58String} xkey
|
|
*/
|
|
|
|
HDPublicKey.prototype.fromBase58 = function fromBase58(xkey) {
|
|
this.fromRaw(base58.decode(xkey));
|
|
this._xpubkey = xkey;
|
|
return this;
|
|
};
|
|
|
|
/**
|
|
* Inject properties from serialized data.
|
|
* @private
|
|
* @param {Buffer} raw
|
|
*/
|
|
|
|
HDPublicKey.prototype.fromRaw = function fromRaw(raw) {
|
|
var p = new BufferReader(raw);
|
|
var i, version, type, prefix;
|
|
|
|
version = p.readU32BE();
|
|
this.depth = p.readU8();
|
|
this.parentFingerPrint = p.readBytes(4);
|
|
this.childIndex = p.readU32BE();
|
|
this.chainCode = p.readBytes(32);
|
|
this.publicKey = p.readBytes(33);
|
|
p.verifyChecksum();
|
|
|
|
for (i = 0; i < networks.types.length; i++) {
|
|
type = networks.types[i];
|
|
prefix = networks[type].keyPrefix.xpubkey;
|
|
if (version === prefix)
|
|
break;
|
|
}
|
|
|
|
assert(i < networks.types.length, 'Network not found.');
|
|
|
|
this.network = Network.get(type);
|
|
|
|
return this;
|
|
};
|
|
|
|
/**
|
|
* Serialize key data to base58 extended key.
|
|
* @param {Network|String} network
|
|
* @returns {Base58String}
|
|
*/
|
|
|
|
HDPublicKey.prototype.toBase58 = function toBase58(network) {
|
|
return base58.encode(this.toRaw(network));
|
|
};
|
|
|
|
/**
|
|
* Serialize the key.
|
|
* @param {Network|NetworkType} network
|
|
* @returns {Buffer}
|
|
*/
|
|
|
|
HDPublicKey.prototype.toRaw = function toRaw(network, writer) {
|
|
var p = new BufferWriter(writer);
|
|
|
|
if (!network)
|
|
network = this.network;
|
|
|
|
network = Network.get(network);
|
|
|
|
p.writeU32BE(network.keyPrefix.xpubkey);
|
|
p.writeU8(this.depth);
|
|
p.writeBytes(this.parentFingerPrint);
|
|
p.writeU32BE(this.childIndex);
|
|
p.writeBytes(this.chainCode);
|
|
p.writeBytes(this.publicKey);
|
|
p.writeChecksum();
|
|
|
|
if (!writer)
|
|
p = p.render();
|
|
|
|
return p;
|
|
};
|
|
|
|
/**
|
|
* Instantiate an HD public key from a base58 string.
|
|
* @param {Base58String} xkey
|
|
* @returns {HDPublicKey}
|
|
*/
|
|
|
|
HDPublicKey.fromBase58 = function fromBase58(xkey) {
|
|
return new HDPublicKey().fromBase58(xkey);
|
|
};
|
|
|
|
/**
|
|
* Instantiate key from serialized data.
|
|
* @param {Buffer} raw
|
|
* @returns {HDPublicKey}
|
|
*/
|
|
|
|
HDPublicKey.fromRaw = function fromRaw(data) {
|
|
return new HDPublicKey().fromRaw(data);
|
|
};
|
|
|
|
/**
|
|
* Test whether an object is a HDPublicKey.
|
|
* @param {Object} obj
|
|
* @returns {Boolean}
|
|
*/
|
|
|
|
HDPublicKey.isHDPublicKey = function isHDPublicKey(obj) {
|
|
return obj
|
|
&& typeof obj.derive === 'function'
|
|
&& typeof obj.toExtended !== 'function'
|
|
&& obj.chainCode !== undefined;
|
|
};
|
|
|
|
/*
|
|
* Expose
|
|
*/
|
|
|
|
module.exports = HDPublicKey;
|