2019-05-15 01:48:48 +03:00
|
|
|
'use strict';
|
2019-08-25 09:39:20 +03:00
|
|
|
import fs from "fs";
|
|
|
|
import { resolve } from "path";
|
|
|
|
import * as bip39 from "bip39";
|
|
|
|
import { HDNode } from "bitcoinjs-lib";
|
|
|
|
import * as ethereumUtil from "ethereumjs-util";
|
|
|
|
import { randomHexString, randomNumber, saveTests } from "..";
|
2019-05-15 01:48:48 +03:00
|
|
|
function getPath(seed) {
|
2019-08-25 09:39:20 +03:00
|
|
|
let path = "m";
|
|
|
|
let count = randomNumber(seed + "-getPath-1", 1, 7);
|
|
|
|
let hardened = randomNumber(seed + "-getPath-2", 0, count + 2);
|
|
|
|
for (let i = 0; i < count; i++) {
|
|
|
|
path += "/" + randomNumber(seed + "-getPath-3" + i, 0, 12);
|
2019-05-15 01:48:48 +03:00
|
|
|
if (i < hardened) {
|
|
|
|
path += "'";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
function getHD(seed) {
|
2019-08-25 09:39:20 +03:00
|
|
|
let rootNode = HDNode.fromSeedHex(seed);
|
|
|
|
let privateKey = rootNode.keyPair.d.toBuffer(32);
|
|
|
|
let hdnodes = [{
|
2019-05-15 01:48:48 +03:00
|
|
|
path: 'm',
|
|
|
|
privateKey: '0x' + privateKey.toString('hex'),
|
|
|
|
address: '0x' + ethereumUtil.privateToAddress(privateKey).toString('hex'),
|
|
|
|
}];
|
2019-08-25 09:39:20 +03:00
|
|
|
for (let j = 0; j < 5; j++) {
|
|
|
|
let path = getPath(seed + '-hdnode-' + j);
|
|
|
|
let node = rootNode.derivePath(path);
|
|
|
|
let privateKey = node.keyPair.d.toBuffer(32);
|
2019-05-15 01:48:48 +03:00
|
|
|
hdnodes.push({
|
|
|
|
path: path,
|
2019-08-25 09:39:20 +03:00
|
|
|
privateKey: '0x' + privateKey.toString('hex'),
|
|
|
|
address: '0x' + ethereumUtil.privateToAddress(privateKey).toString('hex'),
|
2019-05-15 01:48:48 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return hdnodes;
|
|
|
|
}
|
2019-08-25 09:39:20 +03:00
|
|
|
const testcases = [];
|
2019-05-15 01:48:48 +03:00
|
|
|
// https://medium.com/@alexberegszaszi/why-do-my-bip32-wallets-disagree-6f3254cc5846#.6tqszlvf4
|
|
|
|
testcases.push({
|
|
|
|
name: "axic",
|
|
|
|
locale: "en",
|
|
|
|
entropy: '0xb0a30c7e93a58094d213c4c0aaba22da',
|
|
|
|
mnemonic: 'radar blur cabbage chef fix engine embark joy scheme fiction master release',
|
|
|
|
seed: '0xed37b3442b3d550d0fbb6f01f20aac041c245d4911e13452cac7b1676a070eda66771b71c0083b34cc57ca9c327c459a0ec3600dbaf7f238ff27626c8430a806',
|
|
|
|
hdnodes: [
|
|
|
|
{
|
|
|
|
path: "m/44'/60'/0'/0/0",
|
|
|
|
address: '0xac39b311dceb2a4b2f5d8461c1cdaf756f4f7ae9',
|
|
|
|
privateKey: '0xb96e9ccb774cc33213cbcb2c69d3cdae17b0fe4888a1ccd343cbd1a17fd98b18',
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
2019-08-25 09:39:20 +03:00
|
|
|
["en", "es", "fr", "it", "ja", "ko", "zh_cn", "zh_tw"].forEach((locale) => {
|
|
|
|
let tests = JSON.parse(fs.readFileSync(resolve(__dirname, "../input/easyseed-bip39/bip39_vectors." + locale + ".json")).toString());
|
|
|
|
tests.forEach((test, index) => {
|
2019-05-15 01:48:48 +03:00
|
|
|
testcases.push({
|
|
|
|
name: ("easyseed-" + locale + "-" + index),
|
|
|
|
entropy: "0x" + test.entropy,
|
|
|
|
locale: locale,
|
|
|
|
mnemonic: test.mnemonic,
|
|
|
|
password: (test.passphrase || ''),
|
|
|
|
seed: "0x" + test.seed,
|
|
|
|
hdnodes: []
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
console.log("@TODO: This should be 1024");
|
2019-08-25 09:39:20 +03:00
|
|
|
for (let i = 0; i < 10; i++) {
|
|
|
|
let strength = 16 + 4 * randomNumber('random-1-' + i, 0, 5);
|
|
|
|
let entropy = randomHexString('random-2-' + i, strength);
|
|
|
|
let mnemonic = bip39.entropyToMnemonic(entropy.substring(2));
|
|
|
|
let seed = bip39.mnemonicToSeedHex(mnemonic);
|
2019-05-15 01:48:48 +03:00
|
|
|
testcases.push({
|
|
|
|
name: "random-" + i,
|
|
|
|
locale: "en",
|
|
|
|
entropy: entropy,
|
|
|
|
mnemonic: mnemonic,
|
|
|
|
seed: '0x' + seed,
|
|
|
|
hdnodes: getHD(seed),
|
|
|
|
});
|
|
|
|
}
|
2019-08-25 09:39:20 +03:00
|
|
|
let trezor = require('../input/tests-trezor-bip39.json');
|
|
|
|
trezor.english.forEach((testcase, i) => {
|
2019-05-15 01:48:48 +03:00
|
|
|
testcases.push({
|
|
|
|
name: "trezor-" + i,
|
|
|
|
locale: "en",
|
|
|
|
entropy: '0x' + testcase[0],
|
|
|
|
mnemonic: testcase[1],
|
|
|
|
seed: '0x' + testcase[2],
|
|
|
|
hdnodes: getHD(testcase[2]),
|
|
|
|
password: 'TREZOR',
|
|
|
|
});
|
|
|
|
});
|
|
|
|
/*
|
|
|
|
let seed = bip39.mnemonicToSeedHex('radar blur cabbage chef fix engine embark joy scheme fiction master release');
|
|
|
|
console.log('Seed', seed);
|
|
|
|
let entropy = bip39.mnemonicToEntropy('radar blur cabbage chef fix engine embark joy scheme fiction master release');
|
|
|
|
console.log('Entropy', entropy);
|
|
|
|
let rootNode = HDNode.fromSeedHex(seed);
|
|
|
|
let node = rootNode.derivePath("m/44'/60'/0'/0/0");
|
|
|
|
console.log('PrivateKey', node.keyPair.d.toBuffer(32).toString('hex')),
|
|
|
|
*/
|
2019-08-25 09:39:20 +03:00
|
|
|
saveTests('hdnode', testcases);
|