Do I have any chance to get hte same private key on the separated service like http://bip32.org/ or some open source HD wallet by same Mnemonic seed or pathShare ?
For example:
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()));
Have got - KybWiYVNf6TsjHKqfJFeX7QaNLBppLqJiuRL84MuzXKQ2jcJuHe9
Next go to the http://bip32.org/ set paths share "crazy horse battery staple" select Derivation Path - simple and set 5
Got different private key.
How can I get same private key by mnemonic code or pathshare on the separated service like http://bip32.org/ or some another one. For example some open source HD wallet.
Thank you!