bitcoinj和http://bip32.org

时间:2015-10-02 11:27:40

标签: bitcoin deterministic bitcoinj

我是否有机会通过相同的助记符种子或路径分享在http://bip32.org/等seporated服务上获得相同的私钥

例如:

DeterministicSeed seed = new DeterministicSeed("crazy horse battery staple", null, "crazy horse battery staple", new Date().getTime());

DeterministicKeyChain keyChain = DeterministicKeyChain.builder().seed(seed).build();

// Get 0H/0/5 key   
 System.out.println(keyChain.getKeyByPath(ImmutableList.of(ChildNumber.ZERO_HARDENED, ChildNumber.ZERO, new ChildNumber(5)), true).getPrivateKeyAsWiF(MainNetParams.get()));

有 - KybWiYVNf6TsjHKqfJFeX7QaNLBppLqJiuRL84MuzXKQ2jcJuHe9

接下来转到http://bip32.org/设置路径分享"疯马电池主食"选择Derivation Path - 简单并设置5 得到了不同的私钥。

如何通过http://bip32.org/

等分离服务上的助记符代码或路径共享来获取相同的私钥

BR!

0 个答案:

没有答案