├── .gitignore ├── LICENSE ├── README.MD ├── app_icon.png ├── bip39_gui.py ├── bip39_resources_rc.py ├── contributing.md ├── requirements.txt ├── src ├── __init__.py ├── address.py ├── constants.py ├── crypto.py ├── ecdsa_functions.py ├── encoding.py └── seed_gen.py ├── tests ├── __init__.py ├── address_tests.py ├── crypto_tests.py ├── encoding_tests.py ├── seed_gen_tests.py ├── test_constants.py └── ui_tests.py └── ui └── ui_functions.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/README.MD -------------------------------------------------------------------------------- /app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/app_icon.png -------------------------------------------------------------------------------- /bip39_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/bip39_gui.py -------------------------------------------------------------------------------- /bip39_resources_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/bip39_resources_rc.py -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/contributing.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyQt5 2 | pbkdf2 3 | ecdsa 4 | pytest 5 | -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/src/address.py -------------------------------------------------------------------------------- /src/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/src/constants.py -------------------------------------------------------------------------------- /src/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/src/crypto.py -------------------------------------------------------------------------------- /src/ecdsa_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/src/ecdsa_functions.py -------------------------------------------------------------------------------- /src/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/src/encoding.py -------------------------------------------------------------------------------- /src/seed_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/src/seed_gen.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/address_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/tests/address_tests.py -------------------------------------------------------------------------------- /tests/crypto_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/tests/crypto_tests.py -------------------------------------------------------------------------------- /tests/encoding_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/tests/encoding_tests.py -------------------------------------------------------------------------------- /tests/seed_gen_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/tests/seed_gen_tests.py -------------------------------------------------------------------------------- /tests/test_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/tests/test_constants.py -------------------------------------------------------------------------------- /tests/ui_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/tests/ui_tests.py -------------------------------------------------------------------------------- /ui/ui_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinsurenz/btc-key-gui/HEAD/ui/ui_functions.py --------------------------------------------------------------------------------