A private key generator using python
This is a simple private key generator, which does the following:
- Prompts the user for a random input
- Hash's the input using sha256
- Verifies that the resulting hex is less than 2^256
- Adds the version number
- Adds a 32-bit checksum by double-hashing the hex
- Convers the resulting hex to base58
This program makes use of the base58 file from https://gist.github.com/ianoxley/865912