bitmessage-js/lib/wif.js

46 lines
1.3 KiB
JavaScript
Raw Normal View History

2014-12-29 19:59:18 +00:00
/**
2014-12-30 17:00:28 +00:00
* Implements WIF encoding/decoding.
* @see {@link https://en.bitcoin.it/wiki/Wallet_import_format}
2014-12-29 19:59:18 +00:00
* @module bitmessage/wif
*/
"use strict";
var bufferEqual = require("buffer-equal");
var bs58 = require("bs58");
var assert = require("./_util").assert;
2014-12-29 19:59:18 +00:00
var bmcrypto = require("./crypto");
// Compute the WIF checksum for the given data.
2015-01-08 02:00:19 +00:00
function getwifchecksum(data) {
return bmcrypto.sha256(bmcrypto.sha256(data)).slice(0, 4);
2014-12-29 19:59:18 +00:00
}
/**
2015-02-11 19:56:14 +00:00
* Decode WIF-encoded private key (corresponded to a uncompressed public
* key).
2014-12-30 17:00:28 +00:00
* @param {string} wif - Encoded key
* @return {Buffer} Private key.
2014-12-29 19:59:18 +00:00
*/
2014-12-30 17:00:28 +00:00
exports.decode = function(wif) {
var bytes = bs58.decode(wif);
assert(bytes[0] === 0x80, "Bad WIF");
var data = Buffer.from(bytes.slice(0, -4));
var checksum = Buffer.from(bytes.slice(-4));
2015-01-08 02:00:19 +00:00
assert(bufferEqual(checksum, getwifchecksum(data)), "Bad checkum");
return data.slice(1);
2014-12-29 19:59:18 +00:00
};
/**
2015-02-11 19:56:14 +00:00
* Convert private key to a WIF (corresponded to a uncompressed public
* key).
2014-12-29 19:59:18 +00:00
* @param {Buffer} privateKey - A private key to encode
2015-02-11 19:56:14 +00:00
* @return {string} WIF-encoded private key.
2014-12-29 19:59:18 +00:00
*/
exports.encode = function(privateKey) {
var data = Buffer.concat([Buffer.from([0x80]), privateKey]);
2015-01-08 02:00:19 +00:00
var checksum = getwifchecksum(data);
var bytes = Buffer.concat([data, checksum]);
return bs58.encode(bytes);
2014-12-29 19:59:18 +00:00
};