python-bip32 icon indicating copy to clipboard operation
python-bip32 copied to clipboard

Minimalistic implementation of BIP32

Results 15 python-bip32 issues
Sort by recently updated
recently updated
newest added

Some updates (don't need base58 as a dependency) and some fixes (for the ci and for the issue reported in #41).

Takes over #40 now that Coincurve appears to be fixed (see https://github.com/ofek/coincurve/issues/133#issuecomment-1974862264). Based on #42.

BIP-0032 is a proper noun so should be capitalized in a sentence. "the" is not necessary. The get_xxxx(path) methods should not have "path" in them as they don't accept a...

This upgrades `coincurve` to [v21.0.0](https://github.com/ofek/coincurve/releases/tag/v21.0.0) which brings performance improvements and removes all runtime dependencies!

This library allows derivation of unhardened path indices that are greater than `2**31 - 1`. For example: ```python b = bip32.BIP32.from_seed(b'00000000000000000000000000000000') b.get_privkey_from_path(f'm/{2**31}') # returns b'\xa5\xfbs\x87\x1e}\xda\xec\xc2\x9a\xb6\xd0h\xe3\x08e>\x1d\x87\x02Q\x97\xeb\x11\x12\xb3\xccI\xd0W\x95-' ``` While the BIP32 spec...