bitcore-lib-zcash/util/VersionedData.js

43 lines
1.0 KiB
JavaScript
Raw Normal View History

2014-07-10 11:55:32 -07:00
var base58 = require('../lib/Base58').base58Check;
var util = require('util');
var EncodedData = require('./EncodedData');
2013-07-10 10:03:05 -07:00
2014-03-05 12:37:16 -08:00
function VersionedData(version, payload) {
2014-07-10 13:17:24 -07:00
VersionedData.super_.call(this, version, payload);
if (typeof version != 'number') {
return;
2013-07-10 10:03:05 -07:00
};
this.data = new Buffer(payload.length + 1);
this.__proto__ = this.encodings['binary'];
this.version(version);
this.payload(payload);
};
2013-07-10 10:03:05 -07:00
2014-07-10 11:55:32 -07:00
util.inherits(VersionedData, EncodedData);
EncodedData.applyEncodingsTo(VersionedData);
2013-07-10 10:03:05 -07:00
// get or set the version data (the first byte of the address)
VersionedData.prototype.version = function(num) {
if (num || (num === 0)) {
this.doAsBinary(function() {
this.data.writeUInt8(num, 0);
});
return num;
}
return this.as('binary').readUInt8(0);
};
2013-07-10 10:03:05 -07:00
// get or set the payload data (as a Buffer object)
VersionedData.prototype.payload = function(data) {
if (data) {
this.doAsBinary(function() {
data.copy(this.data, 1);
});
return data;
}
return this.as('binary').slice(1);
2013-07-10 10:03:05 -07:00
};
module.exports = VersionedData;