Home
last modified time | relevance | path

Searched refs:bip32 (Results 1 – 25 of 112) sorted by relevance

12345

/dports/security/py-keepkey/python-keepkey-7.2.1/tests/
H A Dtest_msg_getpublickey.py23 import keepkeylib.ckd_public as bip32 namespace
30 …self.assertEqual(bip32.serialize(self.client.get_public_node([]).node, 0x0488B21E), 'xpub661MyMwAq…
31 …self.assertEqual(bip32.serialize(self.client.get_public_node([1]).node, 0x0488B21E), 'xpub68zNxjsT…
32 …self.assertEqual(bip32.serialize(self.client.get_public_node([0, -1]).node, 0x0488B21E), 'xpub6A3F…
33 …self.assertEqual(bip32.serialize(self.client.get_public_node([-9, 0]).node, 0x0488B21E), 'xpub6A2h…
34 …self.assertEqual(bip32.serialize(self.client.get_public_node([0, 9999999]).node, 0x0488B21E), 'xpu…
38 …self.assertEqual(bip32.serialize(self.client.get_public_node([]).node, 0x019dA462), 'Ltub2SSUS19Ci…
39 …self.assertEqual(bip32.serialize(self.client.get_public_node([1]).node, 0x019dA462), 'Ltub2VRVRP5V…
40 …self.assertEqual(bip32.serialize(self.client.get_public_node([0, -1]).node, 0x019dA462), 'Ltub2WUN…
41 …self.assertEqual(bip32.serialize(self.client.get_public_node([-9, 0]).node, 0x019dA462), 'Ltub2WTo…
[all …]
H A Dtest_msg_getaddress.py24 import keepkeylib.ckd_public as bip32 namespace
60 …node = bip32.deserialize('xpub661MyMwAqRbcF1zGijBb2K6x9YiJPh58xpcCeLvTxMX6spkY3PcpJ4ABcCyWfskq5DDx…
78 node_sub2 = bip32.public_ckd(node, [1])
84 address2 = bip32.get_address(node_sub2, 0)
H A Dtest_msg_getaddress_show.py23 import keepkeylib.ckd_public as bip32
38 …node = bip32.deserialize('xpub661MyMwAqRbcF1zGijBb2K6x9YiJPh58xpcCeLvTxMX6spkY3PcpJ4ABcCyWfskq5DDx…
53 …node = bip32.deserialize('xpub661MyMwAqRbcF1zGijBb2K6x9YiJPh58xpcCeLvTxMX6spkY3PcpJ4ABcCyWfskq5DDx…
H A Dtest_msg_getaddress_segwit_native.py20 import keepkeylib.ckd_public as bip32 namespace
43 …pubkeys=list(map(lambda n: proto.HDNodePathType(node=bip32.deserialize(n.xpub), address_n=[2, 0]),…
48 …pubkeys=list(map(lambda n: proto.HDNodePathType(node=bip32.deserialize(n.xpub), address_n=[2, 1]),…
H A Dtest_msg_getaddress_segwit.py20 import keepkeylib.ckd_public as bip32 namespace
55 …pubkeys=list(map(lambda n: proto.HDNodePathType(node=bip32.deserialize(n.xpub), address_n=[2, 0]),…
H A Dtest_msg_ethereum_getaddress.py23 import keepkeylib.ckd_public as bip32 namespace
H A Dtest_msg_eos_getpublickey.py23 import keepkeylib.ckd_public as bip32 namespace
/dports/finance/py-pycoin/pycoin-0.91.20210515/tests/
H A Dkeychain_test.py12 for bip32 in bip32_list:
13 keychain.add_key_paths(bip32.public_copy(), subpaths_for_path_range("0-1/0-10"))
15 for bip32 in bip32_list:
17 subkey = bip32.subkey_for_path("0/5")
H A Dcrack_bip32_test.py4 from pycoin.crack.bip32 import ascend_bip32, crack_bip32
/dports/net-p2p/c-lightning/lightning-0.10.2/common/
H A Dbip32.c6 void towire_ext_key(u8 **pptr, const struct ext_key *bip32) in towire_ext_key() argument
10 if (bip32_key_serialize(bip32, BIP32_FLAG_KEY_PUBLIC, out, in towire_ext_key()
17 void fromwire_ext_key(const u8 **cursor, size_t *max, struct ext_key *bip32) in fromwire_ext_key() argument
23 if (bip32_key_unserialize(in, BIP32_SERIALIZED_LEN, bip32) != WALLY_OK) in fromwire_ext_key()
H A Dbip32.h9 void towire_ext_key(u8 **pptr, const struct ext_key *bip32);
10 void fromwire_ext_key(const u8 **cursor, size_t *max, struct ext_key *bip32);
/dports/finance/electrum/Electrum-4.1.5/electrum/
H A Dbip39_recovery.py11 from .bip32 import BIP32_PRIME, BIP32Node
12 from .bip32 import convert_bip32_path_to_list_of_uint32 as bip32_str_to_ints
13 from .bip32 import convert_bip32_intpath_to_strpath as bip32_ints_to_str
/dports/finance/py-pycoin/pycoin-0.91.20210515/tests/cmds/
H A Dku_test.py22 bip32 = network.parse.bip32_prv(output[0])
23 bip32_as_text = bip32.hwif(as_private=True)
/dports/finance/electrum/Electrum-4.1.5/electrum/plugins/bitbox02/
H A Dbitbox02.py8 from electrum import bip32, constants
204 derivation_list = bip32.convert_bip32_path_to_list_of_uint32(derivation)
206 …node = bip32.BIP32Node.from_xkey(xpub, net = constants.BitcoinMainnet()).subkey_at_public_derivati…
221 xpub_keypath = bip32.convert_bip32_path_to_list_of_uint32(bip32_path)
301 bip32.convert_bip32_intpath_to_strpath(account_keypath), xtype
344 address_keypath = bip32.convert_bip32_path_to_list_of_uint32(bip32_path)
547 keypath=bip32.convert_bip32_path_to_list_of_uint32(keypath),
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/tyler-smith/go-bip39/
H A DREADME.md18 "github.com/tyler-smith/go-bip32"
30 masterKey, _ := bip32.NewMasterKey(seed)
/dports/net-p2p/c-lightning/lightning-0.10.2/external/libwally-core/docs/source/
H A Dindex.rst11 bip32
/dports/finance/electrum/Electrum-4.1.5/electrum/scripts/
H A Dbip39_recovery.py10 from electrum.bip32 import BIP32Node
/dports/finance/electrum/Electrum-4.1.5/electrum/plugins/ledger/
H A Dledger.py8 from electrum import bip32
11 from electrum.bip32 import BIP32Node, convert_bip32_intpath_to_strpath
124 bip32_path = bip32.normalize_bip32_derivation(bip32_path)
125 bip32_intpath = bip32.convert_bip32_path_to_list_of_uint32(bip32_path)
128 prevPath = bip32.convert_bip32_intpath_to_strpath(bip32_intpath[:-1])[2:]
/dports/net-p2p/c-lightning/lightning-0.10.2/hsmd/
H A DMakefile25 common/bip32.o \
/dports/net-p2p/c-lightning/lightning-0.10.2/closingd/
H A DMakefile26 common/bip32.o \
/dports/net-p2p/c-lightning/lightning-0.10.2/onchaind/
H A DMakefile38 common/bip32.o \
/dports/net-p2p/c-lightning/lightning-0.10.2/tests/fuzz/
H A DMakefile17 common/bip32.o \
/dports/finance/electrum/Electrum-4.1.5/electrum/plugins/coldcard/
H A Dcoldcard.py10 from electrum import bip32
11 from electrum.bip32 import BIP32Node, InvalidMasterKeyVersionBytes
578 der_prefix_str = bip32.convert_bip32_intpath_to_strpath(der_full)
/dports/finance/py-pycoin/pycoin-0.91.20210515/pycoin/networks/
H A DParseAPI.py99 def bip32(self, s): member in ParseAPI
365 for f in [self.bip32_seed, self.bip32, self.bip49, self.bip84,
/dports/net-p2p/c-lightning/lightning-0.10.2/connectd/
H A DMakefile42 common/bip32.o \

12345