BitcoinVoucherBot / bip38

bip38 paper wallet creator (python)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BIP38 Paper Wallet Creator

BIP38 is a protocol which encrypts a bitcoin private key with a passphrase (using AES and scrypt), such that brute forcing is impossibly time consuming. BIP38 works with several wallet apps, and can be created at websites like bitcoinpaperwallet.com and bitaddress.org, but (for various reasons) one may prefer to not create keys in a web browser. This python 2.7 script generates BIP38 encrypted paper wallets, secured with a passphrase even if a stranger found it.

create-bip38.py (create paper wallet)

  • minimal code, easy to verify
  • randomly generates bitcoin address, and passphrase encrypts key
  • emits a paper wallet image file (if concerned of screen capture spyware)

unlock-bip38.py (decrypt for key)

  • decrypt private key from passphrase and encrypted key

terminal

sample

keygen.py (simple vanity address generator)

  • edit match string in script, then run

Requirements

Python 2.7

Required packages: (apt-get install) python-dev libssl-dev libjpeg-dev zlib1g-dev libpng-dev libfreetype6-dev

Required modules: (pip install) pycrypto scrypt bitcoin base58 pillow

(Credit: https://github.com/surg0r/bip38)

About

bip38 paper wallet creator (python)


Languages

Language:Python 100.0%