bitcoin cold wallet1 Generating a Bitcoin Private Key and Address Generating a Bitcoin Private Key and Address ecdsa 설치 sudo pip install ecdsa 1.소스 import ecdsa import ecdsa.der import ecdsa.util import hashlib import os import re import struct b58 = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz' def base58encode(n): result = '' while n > 0: result = b58[n%58] + result n /= 58 return result def base256decode(s): result = 0 for c in s: result = re.. 2016. 8. 18. 이전 1 다음