286 lines
13 KiB
JavaScript
286 lines
13 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.encryptKeystoreJson = exports.decryptKeystoreJson = exports.decryptKeystoreJsonSync = exports.isKeystoreJson = void 0;
|
|
const aes_js_1 = require("aes-js");
|
|
const index_js_1 = require("../address/index.js");
|
|
const index_js_2 = require("../crypto/index.js");
|
|
const index_js_3 = require("../transaction/index.js");
|
|
const index_js_4 = require("../utils/index.js");
|
|
const utils_js_1 = require("./utils.js");
|
|
const _version_js_1 = require("../_version.js");
|
|
const defaultPath = "m/44'/60'/0'/0/0";
|
|
function isKeystoreJson(json) {
|
|
try {
|
|
const data = JSON.parse(json);
|
|
const version = ((data.version != null) ? parseInt(data.version) : 0);
|
|
if (version === 3) {
|
|
return true;
|
|
}
|
|
}
|
|
catch (error) { }
|
|
return false;
|
|
}
|
|
exports.isKeystoreJson = isKeystoreJson;
|
|
function decrypt(data, key, ciphertext) {
|
|
const cipher = (0, utils_js_1.spelunk)(data, "crypto.cipher:string");
|
|
if (cipher === "aes-128-ctr") {
|
|
const iv = (0, utils_js_1.spelunk)(data, "crypto.cipherparams.iv:data!");
|
|
const aesCtr = new aes_js_1.CTR(key, iv);
|
|
return (0, index_js_4.hexlify)(aesCtr.decrypt(ciphertext));
|
|
}
|
|
return index_js_4.logger.throwError("unsupported cipher", "UNSUPPORTED_OPERATION", {
|
|
operation: "decrypt"
|
|
});
|
|
}
|
|
function getAccount(data, _key) {
|
|
const key = index_js_4.logger.getBytes(_key);
|
|
const ciphertext = (0, utils_js_1.spelunk)(data, "crypto.ciphertext:data!");
|
|
const computedMAC = (0, index_js_4.hexlify)((0, index_js_2.keccak256)((0, index_js_4.concat)([key.slice(16, 32), ciphertext]))).substring(2);
|
|
if (computedMAC !== (0, utils_js_1.spelunk)(data, "crypto.mac:string!").toLowerCase()) {
|
|
return index_js_4.logger.throwArgumentError("incorrect password", "password", "[ REDACTED ]");
|
|
}
|
|
const privateKey = decrypt(data, key.slice(0, 16), ciphertext);
|
|
const address = (0, index_js_3.computeAddress)(privateKey);
|
|
if (data.address) {
|
|
let check = data.address.toLowerCase();
|
|
if (check.substring(0, 2) !== "0x") {
|
|
check = "0x" + check;
|
|
}
|
|
if ((0, index_js_1.getAddress)(check) !== address) {
|
|
index_js_4.logger.throwArgumentError("keystore address/privateKey mismatch", "address", data.address);
|
|
}
|
|
}
|
|
const account = { address, privateKey };
|
|
// Version 0.1 x-ethers metadata must contain an encrypted mnemonic phrase
|
|
const version = (0, utils_js_1.spelunk)(data, "x-ethers.version:string");
|
|
if (version === "0.1") {
|
|
const mnemonicKey = key.slice(32, 64);
|
|
const mnemonicCiphertext = (0, utils_js_1.spelunk)(data, "x-ethers.mnemonicCiphertext:data!");
|
|
const mnemonicIv = (0, utils_js_1.spelunk)(data, "x-ethers.mnemonicCounter:data!");
|
|
const mnemonicAesCtr = new aes_js_1.CTR(mnemonicKey, mnemonicIv);
|
|
account.mnemonic = {
|
|
path: ((0, utils_js_1.spelunk)(data, "x-ethers.path:string") || defaultPath),
|
|
locale: ((0, utils_js_1.spelunk)(data, "x-ethers.locale:string") || "en"),
|
|
entropy: (0, index_js_4.hexlify)(index_js_4.logger.getBytes(mnemonicAesCtr.decrypt(mnemonicCiphertext)))
|
|
};
|
|
}
|
|
return account;
|
|
}
|
|
function getKdfParams(data) {
|
|
const kdf = (0, utils_js_1.spelunk)(data, "crypto.kdf:string");
|
|
if (kdf && typeof (kdf) === "string") {
|
|
const throwError = function (name, value) {
|
|
return index_js_4.logger.throwArgumentError("invalid key-derivation function parameters", name, value);
|
|
};
|
|
if (kdf.toLowerCase() === "scrypt") {
|
|
const salt = (0, utils_js_1.spelunk)(data, "crypto.kdfparams.salt:data!");
|
|
const N = (0, utils_js_1.spelunk)(data, "crypto.kdfparams.n:int!");
|
|
const r = (0, utils_js_1.spelunk)(data, "crypto.kdfparams.r:int!");
|
|
const p = (0, utils_js_1.spelunk)(data, "crypto.kdfparams.p:int!");
|
|
// Check for all required parameters
|
|
if (!N || !r || !p) {
|
|
return throwError("kdf", kdf);
|
|
}
|
|
// Make sure N is a power of 2
|
|
if ((N & (N - 1)) !== 0) {
|
|
return throwError("N", N);
|
|
}
|
|
const dkLen = (0, utils_js_1.spelunk)(data, "crypto.kdfparams.dklen:int!");
|
|
if (dkLen !== 32) {
|
|
return throwError("dklen", dkLen);
|
|
}
|
|
return { name: "scrypt", salt, N, r, p, dkLen: 64 };
|
|
}
|
|
else if (kdf.toLowerCase() === "pbkdf2") {
|
|
const salt = (0, utils_js_1.spelunk)(data, "crypto.kdfparams.salt:data!");
|
|
const prf = (0, utils_js_1.spelunk)(data, "crypto.kdfparams.prf:string!");
|
|
const algorithm = prf.split("-").pop();
|
|
if (algorithm !== "sha256" && algorithm !== "sha512") {
|
|
return throwError("prf", prf);
|
|
}
|
|
const count = (0, utils_js_1.spelunk)(data, "crypto.kdfparams.c:int!");
|
|
const dkLen = (0, utils_js_1.spelunk)(data, "crypto.kdfparams.dklen:int!");
|
|
if (dkLen !== 32) {
|
|
throwError("dklen", dkLen);
|
|
}
|
|
return { name: "pbkdf2", salt, count, dkLen, algorithm };
|
|
}
|
|
}
|
|
return index_js_4.logger.throwArgumentError("unsupported key-derivation function", "kdf", kdf);
|
|
}
|
|
function decryptKeystoreJsonSync(json, _password) {
|
|
const data = JSON.parse(json);
|
|
const password = (0, utils_js_1.getPassword)(_password);
|
|
const params = getKdfParams(data);
|
|
if (params.name === "pbkdf2") {
|
|
const { salt, count, dkLen, algorithm } = params;
|
|
const key = (0, index_js_2.pbkdf2)(password, salt, count, dkLen, algorithm);
|
|
return getAccount(data, key);
|
|
}
|
|
else if (params.name === "scrypt") {
|
|
const { salt, N, r, p, dkLen } = params;
|
|
const key = (0, index_js_2.scryptSync)(password, salt, N, r, p, dkLen);
|
|
return getAccount(data, key);
|
|
}
|
|
throw new Error("unreachable");
|
|
}
|
|
exports.decryptKeystoreJsonSync = decryptKeystoreJsonSync;
|
|
function stall(duration) {
|
|
return new Promise((resolve) => { setTimeout(() => { resolve(); }, duration); });
|
|
}
|
|
async function decryptKeystoreJson(json, _password, progress) {
|
|
const data = JSON.parse(json);
|
|
const password = (0, utils_js_1.getPassword)(_password);
|
|
const params = getKdfParams(data);
|
|
if (params.name === "pbkdf2") {
|
|
if (progress) {
|
|
progress(0);
|
|
await stall(0);
|
|
}
|
|
const { salt, count, dkLen, algorithm } = params;
|
|
const key = (0, index_js_2.pbkdf2)(password, salt, count, dkLen, algorithm);
|
|
if (progress) {
|
|
progress(1);
|
|
await stall(0);
|
|
}
|
|
return getAccount(data, key);
|
|
}
|
|
else if (params.name === "scrypt") {
|
|
const { salt, N, r, p, dkLen } = params;
|
|
const key = await (0, index_js_2.scrypt)(password, salt, N, r, p, dkLen, progress);
|
|
return getAccount(data, key);
|
|
}
|
|
throw new Error("unreachable");
|
|
}
|
|
exports.decryptKeystoreJson = decryptKeystoreJson;
|
|
async function encryptKeystoreJson(account, password, options, progressCallback) {
|
|
// Check the address matches the private key
|
|
//if (getAddress(account.address) !== computeAddress(account.privateKey)) {
|
|
// throw new Error("address/privateKey mismatch");
|
|
//}
|
|
// Check the mnemonic (if any) matches the private key
|
|
/*
|
|
if (hasMnemonic(account)) {
|
|
const mnemonic = account.mnemonic;
|
|
const node = HDNode.fromMnemonic(mnemonic.phrase, null, mnemonic.locale).derivePath(mnemonic.path || defaultPath);
|
|
|
|
if (node.privateKey != account.privateKey) {
|
|
throw new Error("mnemonic mismatch");
|
|
}
|
|
}
|
|
*/
|
|
// The options are optional, so adjust the call as needed
|
|
if (typeof (options) === "function" && !progressCallback) {
|
|
progressCallback = options;
|
|
options = {};
|
|
}
|
|
if (!options) {
|
|
options = {};
|
|
}
|
|
const privateKey = index_js_4.logger.getBytes(account.privateKey, "privateKey");
|
|
const passwordBytes = (0, utils_js_1.getPassword)(password);
|
|
/*
|
|
let mnemonic: null | Mnemonic = null;
|
|
let entropy: Uint8Array = null
|
|
let path: string = null;
|
|
let locale: string = null;
|
|
if (hasMnemonic(account)) {
|
|
const srcMnemonic = account.mnemonic;
|
|
entropy = arrayify(mnemonicToEntropy(srcMnemonic.phrase, srcMnemonic.locale || "en"));
|
|
path = srcMnemonic.path || defaultPath;
|
|
locale = srcMnemonic.locale || "en";
|
|
mnemonic = Mnemonic.from(
|
|
}
|
|
*/
|
|
// Check/generate the salt
|
|
const salt = (options.salt != null) ? index_js_4.logger.getBytes(options.salt, "options.slat") : (0, index_js_2.randomBytes)(32);
|
|
// Override initialization vector
|
|
const iv = (options.iv != null) ? index_js_4.logger.getBytes(options.iv, "options.iv") : (0, index_js_2.randomBytes)(16);
|
|
if (iv.length !== 16) {
|
|
index_js_4.logger.throwArgumentError("invalid options.iv", "options.iv", options.iv);
|
|
}
|
|
// Override the uuid
|
|
const uuidRandom = (options.uuid != null) ? index_js_4.logger.getBytes(options.uuid, "options.uuid") : (0, index_js_2.randomBytes)(16);
|
|
if (uuidRandom.length !== 16) {
|
|
index_js_4.logger.throwArgumentError("invalid options.uuid", "options.uuid", options.iv);
|
|
}
|
|
if (uuidRandom.length !== 16) {
|
|
throw new Error("invalid uuid");
|
|
}
|
|
// Override the scrypt password-based key derivation function parameters
|
|
let N = (1 << 17), r = 8, p = 1;
|
|
if (options.scrypt) {
|
|
if (options.scrypt.N) {
|
|
N = options.scrypt.N;
|
|
}
|
|
if (options.scrypt.r) {
|
|
r = options.scrypt.r;
|
|
}
|
|
if (options.scrypt.p) {
|
|
p = options.scrypt.p;
|
|
}
|
|
}
|
|
// 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)
|
|
const _key = await (0, index_js_2.scrypt)(passwordBytes, salt, N, r, p, 64, progressCallback);
|
|
const key = index_js_4.logger.getBytes(_key);
|
|
// This will be used to encrypt the wallet (as per Web3 secret storage)
|
|
const derivedKey = key.slice(0, 16);
|
|
const macPrefix = key.slice(16, 32);
|
|
// Encrypt the private key
|
|
const aesCtr = new aes_js_1.CTR(derivedKey, iv);
|
|
const ciphertext = index_js_4.logger.getBytes(aesCtr.encrypt(privateKey));
|
|
// Compute the message authentication code, used to check the password
|
|
const mac = (0, index_js_2.keccak256)((0, index_js_4.concat)([macPrefix, ciphertext]));
|
|
// See: https://github.com/ethereum/wiki/wiki/Web3-Secret-Storage-Definition
|
|
const data = {
|
|
address: account.address.substring(2).toLowerCase(),
|
|
id: (0, utils_js_1.uuidV4)(uuidRandom),
|
|
version: 3,
|
|
Crypto: {
|
|
cipher: "aes-128-ctr",
|
|
cipherparams: {
|
|
iv: (0, index_js_4.hexlify)(iv).substring(2),
|
|
},
|
|
ciphertext: (0, index_js_4.hexlify)(ciphertext).substring(2),
|
|
kdf: "scrypt",
|
|
kdfparams: {
|
|
salt: (0, index_js_4.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 (account.mnemonic) {
|
|
const client = (options.client != null) ? options.client : `ethers/${_version_js_1.version}`;
|
|
const path = account.mnemonic.path || defaultPath;
|
|
const locale = account.mnemonic.locale || "en";
|
|
const mnemonicKey = key.slice(32, 64);
|
|
const entropy = index_js_4.logger.getBytes(account.mnemonic.entropy, "account.mnemonic.entropy");
|
|
const mnemonicIv = (0, index_js_2.randomBytes)(16);
|
|
const mnemonicAesCtr = new aes_js_1.CTR(mnemonicKey, mnemonicIv);
|
|
const mnemonicCiphertext = index_js_4.logger.getBytes(mnemonicAesCtr.encrypt(entropy));
|
|
const now = new Date();
|
|
const timestamp = (now.getUTCFullYear() + "-" +
|
|
(0, utils_js_1.zpad)(now.getUTCMonth() + 1, 2) + "-" +
|
|
(0, utils_js_1.zpad)(now.getUTCDate(), 2) + "T" +
|
|
(0, utils_js_1.zpad)(now.getUTCHours(), 2) + "-" +
|
|
(0, utils_js_1.zpad)(now.getUTCMinutes(), 2) + "-" +
|
|
(0, utils_js_1.zpad)(now.getUTCSeconds(), 2) + ".0Z");
|
|
const gethFilename = ("UTC--" + timestamp + "--" + data.address);
|
|
data["x-ethers"] = {
|
|
client, gethFilename, path, locale,
|
|
mnemonicCounter: (0, index_js_4.hexlify)(mnemonicIv).substring(2),
|
|
mnemonicCiphertext: (0, index_js_4.hexlify)(mnemonicCiphertext).substring(2),
|
|
version: "0.1"
|
|
};
|
|
}
|
|
return JSON.stringify(data);
|
|
}
|
|
exports.encryptKeystoreJson = encryptKeystoreJson;
|
|
//# sourceMappingURL=json-keystore.js.map
|