fcoin/lib/primitives/keyring.js
2018-03-29 21:56:47 -07:00

931 lines
19 KiB
JavaScript

/*!
* keyring.js - keyring object for bcoin
* Copyright (c) 2014-2015, Fedor Indutny (MIT License)
* Copyright (c) 2014-2017, Christopher Jeffrey (MIT License).
* https://github.com/bcoin-org/bcoin
*/
'use strict';
const assert = require('assert');
const encoding = require('bbuf/lib/encoding');
const hash160 = require('bcrypto/lib/hash160');
const hash256 = require('bcrypto/lib/hash256');
const Network = require('../protocol/network');
const BufferReader = require('bbuf/lib/reader');
const StaticWriter = require('bbuf/lib/staticwriter');
const base58 = require('bstr/lib/base58');
const Script = require('../script/script');
const Address = require('./address');
const Output = require('./output');
const secp256k1 = require('bcrypto/lib/secp256k1');
/**
* Represents a key ring which amounts to an address.
* @alias module:primitives.KeyRing
* @constructor
* @param {Object} options
*/
function KeyRing(options) {
if (!(this instanceof KeyRing))
return new KeyRing(options);
this.witness = false;
this.nested = false;
this.publicKey = encoding.ZERO_KEY;
this.privateKey = null;
this.script = null;
this._keyHash = null;
this._keyAddress = null;
this._program = null;
this._nestedHash = null;
this._nestedAddress = null;
this._scriptHash160 = null;
this._scriptHash256 = null;
this._scriptAddress = null;
if (options)
this.fromOptions(options);
}
/**
* Inject properties from options object.
* @private
* @param {Object} options
*/
KeyRing.prototype.fromOptions = function fromOptions(options) {
let key = toKey(options);
if (options.witness != null) {
assert(typeof options.witness === 'boolean');
this.witness = options.witness;
}
if (options.nested != null) {
assert(typeof options.nested === 'boolean');
this.nested = options.nested;
}
if (Buffer.isBuffer(key))
return this.fromKey(key);
key = toKey(options.key);
if (options.publicKey)
key = toKey(options.publicKey);
if (options.privateKey)
key = toKey(options.privateKey);
const script = options.script;
const compress = options.compressed;
if (script)
return this.fromScript(key, script, compress);
return this.fromKey(key, compress);
};
/**
* Instantiate key ring from options.
* @param {Object} options
* @returns {KeyRing}
*/
KeyRing.fromOptions = function fromOptions(options) {
return new KeyRing().fromOptions(options);
};
/**
* Clear cached key/script hashes.
*/
KeyRing.prototype.refresh = function refresh() {
this._keyHash = null;
this._keyAddress = null;
this._program = null;
this._nestedHash = null;
this._nestedAddress = null;
this._scriptHash160 = null;
this._scriptHash256 = null;
this._scriptAddress = null;
};
/**
* Inject data from private key.
* @private
* @param {Buffer} key
* @param {Boolean?} compress
*/
KeyRing.prototype.fromPrivate = function fromPrivate(key, compress) {
assert(Buffer.isBuffer(key), 'Private key must be a buffer.');
assert(secp256k1.privateKeyVerify(key), 'Not a valid private key.');
this.privateKey = key;
this.publicKey = secp256k1.publicKeyCreate(key, compress !== false);
return this;
};
/**
* Instantiate keyring from a private key.
* @param {Buffer} key
* @param {Boolean?} compress
* @returns {KeyRing}
*/
KeyRing.fromPrivate = function fromPrivate(key, compress) {
return new KeyRing().fromPrivate(key, compress);
};
/**
* Inject data from public key.
* @private
* @param {Buffer} key
*/
KeyRing.prototype.fromPublic = function fromPublic(key) {
assert(Buffer.isBuffer(key), 'Public key must be a buffer.');
assert(secp256k1.publicKeyVerify(key), 'Not a valid public key.');
this.publicKey = key;
return this;
};
/**
* Generate a keyring.
* @private
* @param {Boolean?} compress
* @returns {KeyRing}
*/
KeyRing.prototype.generate = function generate(compress) {
const key = secp256k1.generatePrivateKey();
return this.fromKey(key, compress);
};
/**
* Generate a keyring.
* @param {Boolean?} compress
* @returns {KeyRing}
*/
KeyRing.generate = function generate(compress) {
return new KeyRing().generate(compress);
};
/**
* Instantiate keyring from a public key.
* @param {Buffer} publicKey
* @returns {KeyRing}
*/
KeyRing.fromPublic = function fromPublic(key) {
return new KeyRing().fromPublic(key);
};
/**
* Inject data from public key.
* @private
* @param {Buffer} privateKey
* @param {Boolean?} compress
*/
KeyRing.prototype.fromKey = function fromKey(key, compress) {
assert(Buffer.isBuffer(key), 'Key must be a buffer.');
if (key.length === 32)
return this.fromPrivate(key, compress !== false);
return this.fromPublic(key);
};
/**
* Instantiate keyring from a public key.
* @param {Buffer} publicKey
* @param {Boolean?} compress
* @returns {KeyRing}
*/
KeyRing.fromKey = function fromKey(key, compress) {
return new KeyRing().fromKey(key, compress);
};
/**
* Inject data from script.
* @private
* @param {Buffer} key
* @param {Script} script
* @param {Boolean?} compress
*/
KeyRing.prototype.fromScript = function fromScript(key, script, compress) {
assert(script instanceof Script, 'Non-script passed into KeyRing.');
this.fromKey(key, compress);
this.script = script;
return this;
};
/**
* Instantiate keyring from script.
* @param {Buffer} key
* @param {Script} script
* @param {Boolean?} compress
* @returns {KeyRing}
*/
KeyRing.fromScript = function fromScript(key, script, compress) {
return new KeyRing().fromScript(key, script, compress);
};
/**
* Calculate WIF serialization size.
* @returns {Number}
*/
KeyRing.prototype.getSecretSize = function getSecretSize() {
let size = 0;
size += 1;
size += this.privateKey.length;
if (this.publicKey.length === 33)
size += 1;
size += 4;
return size;
};
/**
* Convert key to a CBitcoinSecret.
* @param {(Network|NetworkType)?} network
* @returns {Base58String}
*/
KeyRing.prototype.toSecret = function toSecret(network) {
const size = this.getSecretSize();
const bw = new StaticWriter(size);
assert(this.privateKey, 'Cannot serialize without private key.');
network = Network.get(network);
bw.writeU8(network.keyPrefix.privkey);
bw.writeBytes(this.privateKey);
if (this.publicKey.length === 33)
bw.writeU8(1);
bw.writeChecksum(hash256.digest);
return base58.encode(bw.render());
};
/**
* Inject properties from serialized CBitcoinSecret.
* @private
* @param {Base58String} secret
* @param {(Network|NetworkType)?} network
*/
KeyRing.prototype.fromSecret = function fromSecret(data, network) {
const br = new BufferReader(base58.decode(data), true);
const version = br.readU8();
Network.fromWIF(version, network);
const key = br.readBytes(32);
let compress = false;
if (br.left() > 4) {
assert(br.readU8() === 1, 'Bad compression flag.');
compress = true;
}
br.verifyChecksum(hash256.digest);
return this.fromPrivate(key, compress);
};
/**
* Instantiate a keyring from a serialized CBitcoinSecret.
* @param {Base58String} secret
* @param {(Network|NetworkType)?} network
* @returns {KeyRing}
*/
KeyRing.fromSecret = function fromSecret(data, network) {
return new KeyRing().fromSecret(data, network);
};
/**
* Get private key.
* @param {String?} enc - Can be `"hex"`, `"base58"`, or `null`.
* @returns {Buffer} Private key.
*/
KeyRing.prototype.getPrivateKey = function getPrivateKey(enc, network) {
if (!this.privateKey)
return null;
if (enc === 'base58')
return this.toSecret(network);
if (enc === 'hex')
return this.privateKey.toString('hex');
return this.privateKey;
};
/**
* Get public key.
* @param {String?} enc - `"hex"` or `null`.
* @returns {Buffer}
*/
KeyRing.prototype.getPublicKey = function getPublicKey(enc) {
if (enc === 'base58')
return base58.encode(this.publicKey);
if (enc === 'hex')
return this.publicKey.toString('hex');
return this.publicKey;
};
/**
* Get redeem script.
* @returns {Script}
*/
KeyRing.prototype.getScript = function getScript() {
return this.script;
};
/**
* Get witness program.
* @returns {Buffer}
*/
KeyRing.prototype.getProgram = function getProgram() {
if (!this.witness)
return null;
if (!this._program) {
let program;
if (!this.script) {
const hash = hash160.digest(this.publicKey);
program = Script.fromProgram(0, hash);
} else {
const hash = this.script.sha256();
program = Script.fromProgram(0, hash);
}
this._program = program;
}
return this._program;
};
/**
* Get address' ripemd160 program scripthash
* (for witness programs behind a scripthash).
* @param {String?} enc - `"hex"` or `null`.
* @returns {Buffer}
*/
KeyRing.prototype.getNestedHash = function getNestedHash(enc) {
if (!this.witness)
return null;
if (!this._nestedHash)
this._nestedHash = this.getProgram().hash160();
return enc === 'hex'
? this._nestedHash.toString('hex')
: this._nestedHash;
};
/**
* Get address' scripthash address for witness program.
* @param {String?} enc - `"base58"` or `null`.
* @returns {Address|Base58Address}
*/
KeyRing.prototype.getNestedAddress = function getNestedAddress(enc, network) {
if (!this.witness)
return null;
if (!this._nestedAddress) {
const hash = this.getNestedHash();
const addr = Address.fromScripthash(hash);
this._nestedAddress = addr;
}
if (enc === 'base58')
return this._nestedAddress.toBase58(network);
if (enc === 'string')
return this._nestedAddress.toString(network);
return this._nestedAddress;
};
/**
* Get scripthash.
* @param {String?} enc - `"hex"` or `null`.
* @returns {Buffer}
*/
KeyRing.prototype.getScriptHash = function getScriptHash(enc) {
if (this.witness)
return this.getScriptHash256(enc);
return this.getScriptHash160(enc);
};
/**
* Get ripemd160 scripthash.
* @param {String?} enc - `"hex"` or `null`.
* @returns {Buffer}
*/
KeyRing.prototype.getScriptHash160 = function getScriptHash160(enc) {
if (!this.script)
return null;
if (!this._scriptHash160)
this._scriptHash160 = this.script.hash160();
return enc === 'hex'
? this._scriptHash160.toString('hex')
: this._scriptHash160;
};
/**
* Get sha256 scripthash.
* @param {String?} enc - `"hex"` or `null`.
* @returns {Buffer}
*/
KeyRing.prototype.getScriptHash256 = function getScriptHash256(enc) {
if (!this.script)
return null;
if (!this._scriptHash256)
this._scriptHash256 = this.script.sha256();
return enc === 'hex'
? this._scriptHash256.toString('hex')
: this._scriptHash256;
};
/**
* Get scripthash address.
* @param {String?} enc - `"base58"` or `null`.
* @returns {Address|Base58Address}
*/
KeyRing.prototype.getScriptAddress = function getScriptAddress(enc, network) {
if (!this.script)
return null;
if (!this._scriptAddress) {
let addr;
if (this.witness) {
const hash = this.getScriptHash256();
addr = Address.fromWitnessScripthash(hash);
} else {
const hash = this.getScriptHash160();
addr = Address.fromScripthash(hash);
}
this._scriptAddress = addr;
}
if (enc === 'base58')
return this._scriptAddress.toBase58(network);
if (enc === 'string')
return this._scriptAddress.toString(network);
return this._scriptAddress;
};
/**
* Get public key hash.
* @param {String?} enc - `"hex"` or `null`.
* @returns {Buffer}
*/
KeyRing.prototype.getKeyHash = function getKeyHash(enc) {
if (!this._keyHash)
this._keyHash = hash160.digest(this.publicKey);
return enc === 'hex'
? this._keyHash.toString('hex')
: this._keyHash;
};
/**
* Get pubkeyhash address.
* @param {String?} enc - `"base58"` or `null`.
* @returns {Address|Base58Address}
*/
KeyRing.prototype.getKeyAddress = function getKeyAddress(enc, network) {
if (!this._keyAddress) {
const hash = this.getKeyHash();
let addr;
if (this.witness)
addr = Address.fromWitnessPubkeyhash(hash);
else
addr = Address.fromPubkeyhash(hash);
this._keyAddress = addr;
}
if (enc === 'base58')
return this._keyAddress.toBase58(network);
if (enc === 'string')
return this._keyAddress.toString(network);
return this._keyAddress;
};
/**
* Get hash.
* @param {String?} enc - `"hex"` or `null`.
* @returns {Buffer}
*/
KeyRing.prototype.getHash = function getHash(enc) {
if (this.nested)
return this.getNestedHash(enc);
if (this.script)
return this.getScriptHash(enc);
return this.getKeyHash(enc);
};
/**
* Get base58 address.
* @param {String?} enc - `"base58"` or `null`.
* @returns {Address|Base58Address}
*/
KeyRing.prototype.getAddress = function getAddress(enc, network) {
if (this.nested)
return this.getNestedAddress(enc, network);
if (this.script)
return this.getScriptAddress(enc, network);
return this.getKeyAddress(enc, network);
};
/**
* Test an address hash against hash and program hash.
* @param {Buffer} hash
* @returns {Boolean}
*/
KeyRing.prototype.ownHash = function ownHash(hash) {
if (!hash)
return false;
if (hash.equals(this.getKeyHash()))
return true;
if (this.script) {
if (hash.equals(this.getScriptHash()))
return true;
}
if (this.witness) {
if (hash.equals(this.getNestedHash()))
return true;
}
return false;
};
/**
* Check whether transaction output belongs to this address.
* @param {TX|Output} tx - Transaction or Output.
* @param {Number?} index - Output index.
* @returns {Boolean}
*/
KeyRing.prototype.ownOutput = function ownOutput(tx, index) {
let output;
if (tx instanceof Output) {
output = tx;
} else {
output = tx.outputs[index];
assert(output, 'Output does not exist.');
}
return this.ownHash(output.getHash());
};
/**
* Test a hash against script hashes to
* find the correct redeem script, if any.
* @param {Buffer} hash
* @returns {Script|null}
*/
KeyRing.prototype.getRedeem = function getRedeem(hash) {
if (this.witness) {
if (hash.equals(this.getNestedHash()))
return this.getProgram();
}
if (this.script) {
if (hash.equals(this.getScriptHash160()))
return this.script;
if (hash.equals(this.getScriptHash256()))
return this.script;
}
return null;
};
/**
* Sign a message.
* @param {Buffer} msg
* @returns {Buffer} Signature in DER format.
*/
KeyRing.prototype.sign = function sign(msg) {
assert(this.privateKey, 'Cannot sign without private key.');
return secp256k1.sign(msg, this.privateKey);
};
/**
* Verify a message.
* @param {Buffer} msg
* @param {Buffer} sig - Signature in DER format.
* @returns {Boolean}
*/
KeyRing.prototype.verify = function verify(msg, sig) {
return secp256k1.verify(msg, sig, this.publicKey);
};
/**
* Get witness program version.
* @returns {Number}
*/
KeyRing.prototype.getVersion = function getVersion() {
if (!this.witness)
return -1;
if (this.nested)
return -1;
return 0;
};
/**
* Get address type.
* @returns {ScriptType}
*/
KeyRing.prototype.getType = function getType() {
if (this.nested)
return Address.types.SCRIPTHASH;
if (this.witness)
return Address.types.WITNESS;
if (this.script)
return Address.types.SCRIPTHASH;
return Address.types.PUBKEYHASH;
};
/**
* Inspect keyring.
* @returns {Object}
*/
KeyRing.prototype.inspect = function inspect() {
return this.toJSON();
};
/**
* Convert an KeyRing to a more json-friendly object.
* @returns {Object}
*/
KeyRing.prototype.toJSON = function toJSON(network) {
return {
witness: this.witness,
nested: this.nested,
publicKey: this.publicKey.toString('hex'),
script: this.script ? this.script.toRaw().toString('hex') : null,
program: this.witness ? this.getProgram().toRaw().toString('hex') : null,
type: Address.typesByVal[this.getType()].toLowerCase(),
address: this.getAddress('string', network)
};
};
/**
* Inject properties from json object.
* @private
* @param {Object} json
*/
KeyRing.prototype.fromJSON = function fromJSON(json) {
assert(json);
assert(typeof json.witness === 'boolean');
assert(typeof json.nested === 'boolean');
assert(typeof json.publicKey === 'string');
assert(!json.script || typeof json.script === 'string');
this.witness = json.witness;
this.nested = json.nested;
this.publicKey = Buffer.from(json.publicKey, 'hex');
if (json.script)
this.script = Buffer.from(json.script, 'hex');
return this;
};
/**
* Instantiate an KeyRing from a jsonified transaction object.
* @param {Object} json - The jsonified transaction object.
* @returns {KeyRing}
*/
KeyRing.fromJSON = function fromJSON(json) {
return new KeyRing().fromJSON(json);
};
/**
* Calculate serialization size.
* @returns {Number}
*/
KeyRing.prototype.getSize = function getSize() {
let size = 0;
size += 1;
if (this.privateKey) {
size += encoding.sizeVarBytes(this.privateKey);
size += 1;
} else {
size += encoding.sizeVarBytes(this.publicKey);
}
size += this.script ? this.script.getVarSize() : 1;
return size;
};
/**
* Write the keyring to a buffer writer.
* @param {BufferWriter} bw
*/
KeyRing.prototype.toWriter = function toWriter(bw) {
let field = 0;
if (this.witness)
field |= 1;
if (this.nested)
field |= 2;
bw.writeU8(field);
if (this.privateKey) {
bw.writeVarBytes(this.privateKey);
bw.writeU8(this.publicKey.length === 33);
} else {
bw.writeVarBytes(this.publicKey);
}
if (this.script)
bw.writeVarBytes(this.script.toRaw());
else
bw.writeVarint(0);
return bw;
};
/**
* Serialize the keyring.
* @returns {Buffer}
*/
KeyRing.prototype.toRaw = function toRaw() {
const size = this.getSize();
return this.toWriter(new StaticWriter(size)).render();
};
/**
* Inject properties from buffer reader.
* @private
* @param {BufferReader} br
*/
KeyRing.prototype.fromReader = function fromReader(br) {
const field = br.readU8();
this.witness = (field & 1) !== 0;
this.nested = (field & 2) !== 0;
const key = br.readVarBytes();
if (key.length === 32) {
const compress = br.readU8() === 1;
this.privateKey = key;
this.publicKey = secp256k1.publicKeyCreate(key, compress);
} else {
this.publicKey = key;
assert(secp256k1.publicKeyVerify(key), 'Invalid public key.');
}
const script = br.readVarBytes();
if (script.length > 0)
this.script = Script.fromRaw(script);
return this;
};
/**
* Inject properties from serialized data.
* @private
* @param {Buffer} data
*/
KeyRing.prototype.fromRaw = function fromRaw(data) {
return this.fromReader(new BufferReader(data));
};
/**
* Instantiate a keyring from buffer reader.
* @param {BufferReader} br
* @returns {KeyRing}
*/
KeyRing.fromReader = function fromReader(br) {
return new KeyRing().fromReader(br);
};
/**
* Instantiate a keyring from serialized data.
* @param {Buffer} data
* @returns {KeyRing}
*/
KeyRing.fromRaw = function fromRaw(data) {
return new KeyRing().fromRaw(data);
};
/**
* Test whether an object is a KeyRing.
* @param {Object} obj
* @returns {Boolean}
*/
KeyRing.isKeyRing = function isKeyRing(obj) {
return obj instanceof KeyRing;
};
/*
* Helpers
*/
function toKey(opt) {
if (!opt)
return opt;
if (opt.privateKey)
return opt.privateKey;
if (opt.publicKey)
return opt.publicKey;
return opt;
}
/*
* Expose
*/
module.exports = KeyRing;