kashikoibumi / PyBitmessage

Python3 + PyQt5 port of the reference client for Bitmessage: a P2P encrypted decentralised communication protocol:
https://bitmessage.org/wiki/Main_Page
Other
0 stars 0 forks source link

sixth #11

Closed jon1enforce closed 1 day ago

jon1enforce commented 1 week ago

fix highlevelcrypto.py

---prinv = hashlib.sha512(passphrase + nonce).digest()[:32] +++priv = hashlib.sha512(str(passphrase).encode('utf-8') + str(nonce).encode('utf-8')).digest()[:32]

jon1enforce commented 1 week ago

the issue is that deterministic addresses with password are disabled through this