ethers.js/src/wallet/secret-storage.js

421 lines
16 KiB
JavaScript
Raw Normal View History

2016-07-25 10:55:16 +03:00
'use strict';
2018-06-13 22:39:39 +03:00
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result["default"] = mod;
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
var aes = require("aes-js");
var scrypt = require("scrypt-js");
var uuid = require("uuid");
var address_1 = require("../utils/address");
2018-06-17 23:47:28 +03:00
var bytes_1 = require("../utils/bytes");
2018-06-13 22:39:39 +03:00
var hmac = __importStar(require("../utils/hmac"));
var pbkdf2_1 = require("../utils/pbkdf2");
var keccak256_1 = require("../utils/keccak256");
var utf8_1 = require("../utils/utf8");
var random_bytes_1 = require("../utils/random-bytes");
var signing_key_1 = require("./signing-key");
var HDNode = __importStar(require("./hdnode"));
// @TODO: Maybe move this to HDNode?
var defaultPath = "m/44'/60'/0'/0/0";
2018-06-13 22:39:39 +03:00
function looseArrayify(hexString) {
if (typeof (hexString) === 'string' && hexString.substring(0, 2) !== '0x') {
hexString = '0x' + hexString;
}
2018-06-17 23:47:28 +03:00
return bytes_1.arrayify(hexString);
}
function zpad(value, length) {
value = String(value);
2018-06-13 22:39:39 +03:00
while (value.length < length) {
value = '0' + value;
}
return value;
}
function getPassword(password) {
2018-06-13 22:39:39 +03:00
if (typeof (password) === 'string') {
return utf8_1.toUtf8Bytes(password, utf8_1.UnicodeNormalizationForm.NFKC);
}
2018-06-17 23:47:28 +03:00
return bytes_1.arrayify(password);
}
// Search an Object and its children recursively, caselessly.
function searchPath(object, path) {
var currentChild = object;
var comps = path.toLowerCase().split('/');
for (var i = 0; i < comps.length; i++) {
// Search for a child object with a case-insensitive matching key
var matchingChild = null;
for (var key in currentChild) {
2018-06-13 22:39:39 +03:00
if (key.toLowerCase() === comps[i]) {
matchingChild = currentChild[key];
break;
}
}
// Didn't find one. :'(
if (matchingChild === null) {
return null;
}
// Now check this child...
currentChild = matchingChild;
}
return currentChild;
}
2018-06-13 22:39:39 +03:00
function isCrowdsaleWallet(json) {
try {
var data = JSON.parse(json);
2018-06-13 22:39:39 +03:00
}
catch (error) {
return false;
}
return (data.encseed && data.ethaddr);
2018-06-13 22:39:39 +03:00
}
exports.isCrowdsaleWallet = isCrowdsaleWallet;
function isValidWallet(json) {
try {
var data = JSON.parse(json);
2018-06-13 22:39:39 +03:00
}
catch (error) {
return false;
}
if (!data.version || parseInt(data.version) !== data.version || parseInt(data.version) !== 3) {
return false;
}
// @TODO: Put more checks to make sure it has kdf, iv and all that good stuff
return true;
2018-06-13 22:39:39 +03:00
}
exports.isValidWallet = isValidWallet;
// @TODO: Make a type for string or arrayish
// See: https://github.com/ethereum/pyethsaletool
2018-06-13 22:39:39 +03:00
function decryptCrowdsale(json, password) {
var data = JSON.parse(json);
password = getPassword(password);
// Ethereum Address
2018-06-13 22:39:39 +03:00
var ethaddr = address_1.getAddress(searchPath(data, 'ethaddr'));
// Encrypted Seed
2018-06-13 22:39:39 +03:00
var encseed = looseArrayify(searchPath(data, 'encseed'));
if (!encseed || (encseed.length % 16) !== 0) {
throw new Error('invalid encseed');
}
2018-06-13 22:39:39 +03:00
var key = pbkdf2_1.pbkdf2(password, password, 2000, 32, hmac.createSha256Hmac).slice(0, 16);
var iv = encseed.slice(0, 16);
var encryptedSeed = encseed.slice(16);
// Decrypt the seed
var aesCbc = new aes.ModeOfOperation.cbc(key, iv);
2018-06-17 23:47:28 +03:00
var seed = bytes_1.arrayify(aesCbc.decrypt(encryptedSeed));
seed = aes.padding.pkcs7.strip(seed);
// This wallet format is weird... Convert the binary encoded hex to a string.
var seedHex = '';
for (var i = 0; i < seed.length; i++) {
seedHex += String.fromCharCode(seed[i]);
}
2018-06-13 22:39:39 +03:00
var seedHexBytes = utf8_1.toUtf8Bytes(seedHex);
var signingKey = new signing_key_1.SigningKey(keccak256_1.keccak256(seedHexBytes));
if (signingKey.address !== ethaddr) {
throw new Error('corrupt crowdsale wallet');
}
return signingKey;
2018-06-13 22:39:39 +03:00
}
exports.decryptCrowdsale = decryptCrowdsale;
//@TODO: string or arrayish
function decrypt(json, password, progressCallback) {
var data = JSON.parse(json);
password = getPassword(password);
2018-06-13 22:39:39 +03:00
var decrypt = function (key, ciphertext) {
var cipher = searchPath(data, 'crypto/cipher');
if (cipher === 'aes-128-ctr') {
2018-06-13 22:39:39 +03:00
var iv = looseArrayify(searchPath(data, 'crypto/cipherparams/iv'));
var counter = new aes.Counter(iv);
var aesCtr = new aes.ModeOfOperation.ctr(key, counter);
2018-06-17 23:47:28 +03:00
return bytes_1.arrayify(aesCtr.decrypt(ciphertext));
}
return null;
};
2018-06-13 22:39:39 +03:00
var computeMAC = function (derivedHalf, ciphertext) {
2018-06-17 23:47:28 +03:00
return keccak256_1.keccak256(bytes_1.concat([derivedHalf, ciphertext]));
2018-06-13 22:39:39 +03:00
};
var getSigningKey = function (key, reject) {
var ciphertext = looseArrayify(searchPath(data, 'crypto/ciphertext'));
2018-06-17 23:47:28 +03:00
var computedMAC = bytes_1.hexlify(computeMAC(key.slice(16, 32), ciphertext)).substring(2);
if (computedMAC !== searchPath(data, 'crypto/mac').toLowerCase()) {
reject(new Error('invalid password'));
return null;
}
var privateKey = decrypt(key.slice(0, 16), ciphertext);
var mnemonicKey = key.slice(32, 64);
if (!privateKey) {
reject(new Error('unsupported cipher'));
return null;
}
2018-06-13 22:39:39 +03:00
var signingKey = new signing_key_1.SigningKey(privateKey);
if (signingKey.address !== address_1.getAddress(data.address)) {
reject(new Error('address mismatch'));
return null;
}
// Version 0.1 x-ethers metadata must contain an encrypted mnemonic phrase
if (searchPath(data, 'x-ethers/version') === '0.1') {
2018-06-13 22:39:39 +03:00
var mnemonicCiphertext = looseArrayify(searchPath(data, 'x-ethers/mnemonicCiphertext'));
var mnemonicIv = looseArrayify(searchPath(data, 'x-ethers/mnemonicCounter'));
var mnemonicCounter = new aes.Counter(mnemonicIv);
var mnemonicAesCtr = new aes.ModeOfOperation.ctr(mnemonicKey, mnemonicCounter);
var path = searchPath(data, 'x-ethers/path') || defaultPath;
2018-06-17 23:47:28 +03:00
var entropy = bytes_1.arrayify(mnemonicAesCtr.decrypt(mnemonicCiphertext));
var mnemonic = HDNode.entropyToMnemonic(entropy);
2018-06-13 22:39:39 +03:00
var node = HDNode.fromMnemonic(mnemonic).derivePath(path);
2018-06-17 23:47:28 +03:00
if (node.privateKey != bytes_1.hexlify(privateKey)) {
reject(new Error('mnemonic mismatch'));
return null;
}
2018-06-13 22:39:39 +03:00
signingKey = new signing_key_1.SigningKey(node);
}
return signingKey;
2018-06-13 22:39:39 +03:00
};
return new Promise(function (resolve, reject) {
var kdf = searchPath(data, 'crypto/kdf');
2018-06-13 22:39:39 +03:00
if (kdf && typeof (kdf) === 'string') {
if (kdf.toLowerCase() === 'scrypt') {
2018-06-13 22:39:39 +03:00
var salt = looseArrayify(searchPath(data, 'crypto/kdfparams/salt'));
var N = parseInt(searchPath(data, 'crypto/kdfparams/n'));
var r = parseInt(searchPath(data, 'crypto/kdfparams/r'));
var p = parseInt(searchPath(data, 'crypto/kdfparams/p'));
if (!N || !r || !p) {
reject(new Error('unsupported key-derivation function parameters'));
return;
}
// Make sure N is a power of 2
if ((N & (N - 1)) !== 0) {
reject(new Error('unsupported key-derivation function parameter value for N'));
return;
}
var dkLen = parseInt(searchPath(data, 'crypto/kdfparams/dklen'));
if (dkLen !== 32) {
2018-06-13 22:39:39 +03:00
reject(new Error('unsupported key-derivation derived-key length'));
return;
}
2018-06-13 22:39:39 +03:00
scrypt(password, salt, N, r, p, 64, function (error, progress, key) {
if (error) {
error.progress = progress;
reject(error);
2018-06-13 22:39:39 +03:00
}
else if (key) {
2018-06-17 23:47:28 +03:00
key = bytes_1.arrayify(key);
var signingKey = getSigningKey(key, reject);
2018-06-13 22:39:39 +03:00
if (!signingKey) {
return;
}
if (progressCallback) {
progressCallback(1);
}
resolve(signingKey);
2018-06-13 22:39:39 +03:00
}
else if (progressCallback) {
return progressCallback(progress);
}
});
2018-06-13 22:39:39 +03:00
}
else if (kdf.toLowerCase() === 'pbkdf2') {
var salt = looseArrayify(searchPath(data, 'crypto/kdfparams/salt'));
var prfFunc = null;
var prf = searchPath(data, 'crypto/kdfparams/prf');
if (prf === 'hmac-sha256') {
prfFunc = hmac.createSha256Hmac;
2018-06-13 22:39:39 +03:00
}
else if (prf === 'hmac-sha512') {
prfFunc = hmac.createSha512Hmac;
2018-06-13 22:39:39 +03:00
}
else {
reject(new Error('unsupported prf'));
return;
}
var c = parseInt(searchPath(data, 'crypto/kdfparams/c'));
var dkLen = parseInt(searchPath(data, 'crypto/kdfparams/dklen'));
if (dkLen !== 32) {
2018-06-13 22:39:39 +03:00
reject(new Error('unsupported key-derivation derived-key length'));
return;
}
2018-06-13 22:39:39 +03:00
var key = pbkdf2_1.pbkdf2(password, salt, c, dkLen, prfFunc);
var signingKey = getSigningKey(key, reject);
2018-06-13 22:39:39 +03:00
if (!signingKey) {
return;
}
resolve(signingKey);
2018-06-13 22:39:39 +03:00
}
else {
reject(new Error('unsupported key-derivation function'));
}
2018-06-13 22:39:39 +03:00
}
else {
reject(new Error('unsupported key-derivation function'));
}
});
2018-06-13 22:39:39 +03:00
}
exports.decrypt = decrypt;
// @TOOD: Options
function encrypt(privateKey, password, options, progressCallback) {
// the options are optional, so adjust the call as needed
2018-06-13 22:39:39 +03:00
if (typeof (options) === 'function' && !progressCallback) {
progressCallback = options;
options = {};
}
2018-06-13 22:39:39 +03:00
if (!options) {
options = {};
}
// Check the private key
2018-06-15 11:18:17 +03:00
var privateKeyBytes = null;
2018-06-13 22:39:39 +03:00
if (privateKey instanceof signing_key_1.SigningKey) {
2018-06-17 23:47:28 +03:00
privateKeyBytes = bytes_1.arrayify(privateKey.privateKey);
}
2018-06-15 11:18:17 +03:00
else {
2018-06-17 23:47:28 +03:00
privateKeyBytes = bytes_1.arrayify(privateKey);
2018-06-15 11:18:17 +03:00
}
if (privateKeyBytes.length !== 32) {
2018-06-13 22:39:39 +03:00
throw new Error('invalid private key');
}
password = getPassword(password);
var entropy = options.entropy;
if (options.mnemonic) {
if (entropy) {
if (HDNode.entropyToMnemonic(entropy) !== options.mnemonic) {
throw new Error('entropy and mnemonic mismatch');
}
2018-06-13 22:39:39 +03:00
}
else {
entropy = HDNode.mnemonicToEntropy(options.mnemonic);
}
}
if (entropy) {
2018-06-17 23:47:28 +03:00
entropy = bytes_1.arrayify(entropy);
}
var path = options.path;
if (entropy && !path) {
path = defaultPath;
}
var client = options.client;
2018-06-13 22:39:39 +03:00
if (!client) {
client = "ethers.js";
}
// Check/generate the salt
var salt = options.salt;
if (salt) {
2018-06-17 23:47:28 +03:00
salt = bytes_1.arrayify(salt);
2018-06-13 22:39:39 +03:00
}
else {
salt = random_bytes_1.randomBytes(32);
;
}
// Override initialization vector
var iv = null;
if (options.iv) {
2018-06-17 23:47:28 +03:00
iv = bytes_1.arrayify(options.iv);
2018-06-13 22:39:39 +03:00
if (iv.length !== 16) {
throw new Error('invalid iv');
}
}
else {
iv = random_bytes_1.randomBytes(16);
}
// Override the uuid
var uuidRandom = options.uuid;
if (uuidRandom) {
2018-06-17 23:47:28 +03:00
uuidRandom = bytes_1.arrayify(uuidRandom);
2018-06-13 22:39:39 +03:00
if (uuidRandom.length !== 16) {
throw new Error('invalid uuid');
}
}
else {
uuidRandom = random_bytes_1.randomBytes(16);
}
// Override the scrypt password-based key derivation function parameters
var N = (1 << 17), r = 8, p = 1;
if (options.scrypt) {
2018-06-13 22:39:39 +03:00
if (options.scrypt.N) {
N = options.scrypt.N;
}
if (options.scrypt.r) {
r = options.scrypt.r;
}
if (options.scrypt.p) {
p = options.scrypt.p;
}
}
2018-06-13 22:39:39 +03:00
return new Promise(function (resolve, reject) {
// We take 64 bytes:
// - 32 bytes As normal for the Web3 secret storage (derivedKey, macPrefix)
// - 32 bytes AES key to encrypt mnemonic with (required here to be Ethers Wallet)
2018-06-13 22:39:39 +03:00
scrypt(password, salt, N, r, p, 64, function (error, progress, key) {
if (error) {
error.progress = progress;
reject(error);
2018-06-13 22:39:39 +03:00
}
else if (key) {
2018-06-17 23:47:28 +03:00
key = bytes_1.arrayify(key);
// This will be used to encrypt the wallet (as per Web3 secret storage)
var derivedKey = key.slice(0, 16);
var macPrefix = key.slice(16, 32);
// This will be used to encrypt the mnemonic phrase (if any)
var mnemonicKey = key.slice(32, 64);
// Get the address for this private key
2018-06-15 11:18:17 +03:00
var address = (new signing_key_1.SigningKey(privateKeyBytes)).address;
// Encrypt the private key
var counter = new aes.Counter(iv);
var aesCtr = new aes.ModeOfOperation.ctr(derivedKey, counter);
2018-06-17 23:47:28 +03:00
var ciphertext = bytes_1.arrayify(aesCtr.encrypt(privateKeyBytes));
// Compute the message authentication code, used to check the password
2018-06-17 23:47:28 +03:00
var mac = keccak256_1.keccak256(bytes_1.concat([macPrefix, ciphertext]));
// See: https://github.com/ethereum/wiki/wiki/Web3-Secret-Storage-Definition
var data = {
address: address.substring(2).toLowerCase(),
id: uuid.v4({ random: uuidRandom }),
version: 3,
Crypto: {
cipher: 'aes-128-ctr',
cipherparams: {
2018-06-17 23:47:28 +03:00
iv: bytes_1.hexlify(iv).substring(2),
},
2018-06-17 23:47:28 +03:00
ciphertext: bytes_1.hexlify(ciphertext).substring(2),
kdf: 'scrypt',
kdfparams: {
2018-06-17 23:47:28 +03:00
salt: bytes_1.hexlify(salt).substring(2),
n: N,
dklen: 32,
p: p,
r: r
},
mac: mac.substring(2)
}
};
// If we have a mnemonic, encrypt it into the JSON wallet
if (entropy) {
2018-06-13 22:39:39 +03:00
var mnemonicIv = random_bytes_1.randomBytes(16);
var mnemonicCounter = new aes.Counter(mnemonicIv);
var mnemonicAesCtr = new aes.ModeOfOperation.ctr(mnemonicKey, mnemonicCounter);
2018-06-17 23:47:28 +03:00
var mnemonicCiphertext = bytes_1.arrayify(mnemonicAesCtr.encrypt(entropy));
var now = new Date();
var timestamp = (now.getUTCFullYear() + '-' +
2018-06-13 22:39:39 +03:00
zpad(now.getUTCMonth() + 1, 2) + '-' +
zpad(now.getUTCDate(), 2) + 'T' +
zpad(now.getUTCHours(), 2) + '-' +
zpad(now.getUTCMinutes(), 2) + '-' +
zpad(now.getUTCSeconds(), 2) + '.0Z');
data['x-ethers'] = {
client: client,
gethFilename: ('UTC--' + timestamp + '--' + data.address),
2018-06-17 23:47:28 +03:00
mnemonicCounter: bytes_1.hexlify(mnemonicIv).substring(2),
mnemonicCiphertext: bytes_1.hexlify(mnemonicCiphertext).substring(2),
version: "0.1"
};
}
2018-06-13 22:39:39 +03:00
if (progressCallback) {
progressCallback(1);
}
resolve(JSON.stringify(data));
2018-06-13 22:39:39 +03:00
}
else if (progressCallback) {
return progressCallback(progress);
}
});
});
2018-06-13 22:39:39 +03:00
}
exports.encrypt = encrypt;