Created
May 26, 2018 01:42
-
-
Save Lucas-Developer/14b5fa9a1b921ab8753d26c571e5f6d4 to your computer and use it in GitHub Desktop.
Bitcoin/address validation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from hashlib import sha256 | |
| digits58 = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz' | |
| def decode_base58(bc, length): | |
| n = 0 | |
| for char in bc: | |
| n = n * 58 + digits58.index(char) | |
| return n.to_bytes(length, 'big') | |
| def check_bc(bc): | |
| try: | |
| bcbytes = decode_base58(bc, 25) | |
| return bcbytes[-4:] == sha256(sha256(bcbytes[:-4]).digest()).digest()[:4] | |
| except Exception: | |
| return False | |
| print(check_bc('1AGNa15ZQXAZUgFiqJ3i7Z2DPU2J6hW62i')) | |
| print(check_bc("17NdbrSGoUotzeGCcMMCqnFkEvLymoou9j")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment