├── Barcode ├── Barcode128b.cs └── QR.cs ├── Barcode128b.cs ├── Bitcoin-note.png ├── BtcAddress.csproj ├── BtcAddress.sln ├── CryptSharp ├── Helper.cs ├── Pbkdf2.cs ├── SCrypt.cs └── Salsa20Core.cs ├── Forms ├── AddSingleAddress.Designer.cs ├── AddSingleAddress.cs ├── AddSingleAddress.resx ├── AddressGen.Designer.cs ├── AddressGen.cs ├── AddressGen.resx ├── Base58Calc.Designer.cs ├── Base58Calc.cs ├── Base58Calc.resx ├── Bip38ConfValidator.Designer.cs ├── Bip38ConfValidator.cs ├── Bip38ConfValidator.resx ├── DecryptKey.Designer.cs ├── DecryptKey.cs ├── DecryptKey.resx ├── EscrowTools.Designer.cs ├── EscrowTools.cs ├── EscrowTools.resx ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── KeyCollectionView.Designer.cs ├── KeyCollectionView.cs ├── KeyCollectionView.resx ├── KeyCombiner.Designer.cs ├── KeyCombiner.cs ├── KeyCombiner.resx ├── MofNcalc.Designer.cs ├── MofNcalc.cs ├── MofNcalc.resx ├── PaperWalletPrinter.Designer.cs ├── PaperWalletPrinter.cs ├── PaperWalletPrinter.resx ├── PpecKeygen.Designer.cs ├── PpecKeygen.cs ├── PpecKeygen.resx ├── PrintVouchers.Designer.cs ├── PrintVouchers.cs ├── PrintVouchers.resx ├── Walletgen.Designer.cs ├── Walletgen.cs └── Walletgen.resx ├── Model ├── Address.cs ├── Base58.cs ├── Base58CheckString.cs ├── Bip38Base.cs ├── Bip38Confirmation.cs ├── Bip38Intermediate.cs ├── Bip38KeyPair.cs ├── Bitcoin.cs ├── EncryptedKeyPair.cs ├── EscrowCode.cs ├── ExtraEntropy.cs ├── KeyCollection.cs ├── KeyCollectionItem.cs ├── KeyPair.cs ├── MiniKeyPair.cs ├── MofN.cs ├── PassphraseKeyPair.cs ├── PublicKey.cs ├── ShaPassphraseKeyPair.cs └── StringInterpreter.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README ├── Reports ├── CoinInsert.cs ├── CoinInsertDense.cs ├── PCPrint.cs └── QRPrint.cs ├── Ubuntu-R.ttf ├── app.config ├── bitcoinlogo.ico ├── note-Greyscale.png ├── note-blue.png ├── note-green.png ├── note-purple.png └── note-yellow.png /Barcode/Barcode128b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Barcode/Barcode128b.cs -------------------------------------------------------------------------------- /Barcode/QR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Barcode/QR.cs -------------------------------------------------------------------------------- /Barcode128b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Barcode128b.cs -------------------------------------------------------------------------------- /Bitcoin-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Bitcoin-note.png -------------------------------------------------------------------------------- /BtcAddress.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/BtcAddress.csproj -------------------------------------------------------------------------------- /BtcAddress.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/BtcAddress.sln -------------------------------------------------------------------------------- /CryptSharp/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/CryptSharp/Helper.cs -------------------------------------------------------------------------------- /CryptSharp/Pbkdf2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/CryptSharp/Pbkdf2.cs -------------------------------------------------------------------------------- /CryptSharp/SCrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/CryptSharp/SCrypt.cs -------------------------------------------------------------------------------- /CryptSharp/Salsa20Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/CryptSharp/Salsa20Core.cs -------------------------------------------------------------------------------- /Forms/AddSingleAddress.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/AddSingleAddress.Designer.cs -------------------------------------------------------------------------------- /Forms/AddSingleAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/AddSingleAddress.cs -------------------------------------------------------------------------------- /Forms/AddSingleAddress.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/AddSingleAddress.resx -------------------------------------------------------------------------------- /Forms/AddressGen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/AddressGen.Designer.cs -------------------------------------------------------------------------------- /Forms/AddressGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/AddressGen.cs -------------------------------------------------------------------------------- /Forms/AddressGen.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/AddressGen.resx -------------------------------------------------------------------------------- /Forms/Base58Calc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/Base58Calc.Designer.cs -------------------------------------------------------------------------------- /Forms/Base58Calc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/Base58Calc.cs -------------------------------------------------------------------------------- /Forms/Base58Calc.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/Base58Calc.resx -------------------------------------------------------------------------------- /Forms/Bip38ConfValidator.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/Bip38ConfValidator.Designer.cs -------------------------------------------------------------------------------- /Forms/Bip38ConfValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/Bip38ConfValidator.cs -------------------------------------------------------------------------------- /Forms/Bip38ConfValidator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/Bip38ConfValidator.resx -------------------------------------------------------------------------------- /Forms/DecryptKey.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/DecryptKey.Designer.cs -------------------------------------------------------------------------------- /Forms/DecryptKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/DecryptKey.cs -------------------------------------------------------------------------------- /Forms/DecryptKey.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/DecryptKey.resx -------------------------------------------------------------------------------- /Forms/EscrowTools.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/EscrowTools.Designer.cs -------------------------------------------------------------------------------- /Forms/EscrowTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/EscrowTools.cs -------------------------------------------------------------------------------- /Forms/EscrowTools.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/EscrowTools.resx -------------------------------------------------------------------------------- /Forms/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/Form1.Designer.cs -------------------------------------------------------------------------------- /Forms/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/Form1.cs -------------------------------------------------------------------------------- /Forms/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/Form1.resx -------------------------------------------------------------------------------- /Forms/KeyCollectionView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/KeyCollectionView.Designer.cs -------------------------------------------------------------------------------- /Forms/KeyCollectionView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/KeyCollectionView.cs -------------------------------------------------------------------------------- /Forms/KeyCollectionView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/KeyCollectionView.resx -------------------------------------------------------------------------------- /Forms/KeyCombiner.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/KeyCombiner.Designer.cs -------------------------------------------------------------------------------- /Forms/KeyCombiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/KeyCombiner.cs -------------------------------------------------------------------------------- /Forms/KeyCombiner.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/KeyCombiner.resx -------------------------------------------------------------------------------- /Forms/MofNcalc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/MofNcalc.Designer.cs -------------------------------------------------------------------------------- /Forms/MofNcalc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/MofNcalc.cs -------------------------------------------------------------------------------- /Forms/MofNcalc.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/MofNcalc.resx -------------------------------------------------------------------------------- /Forms/PaperWalletPrinter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/PaperWalletPrinter.Designer.cs -------------------------------------------------------------------------------- /Forms/PaperWalletPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/PaperWalletPrinter.cs -------------------------------------------------------------------------------- /Forms/PaperWalletPrinter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/PaperWalletPrinter.resx -------------------------------------------------------------------------------- /Forms/PpecKeygen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/PpecKeygen.Designer.cs -------------------------------------------------------------------------------- /Forms/PpecKeygen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/PpecKeygen.cs -------------------------------------------------------------------------------- /Forms/PpecKeygen.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/PpecKeygen.resx -------------------------------------------------------------------------------- /Forms/PrintVouchers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/PrintVouchers.Designer.cs -------------------------------------------------------------------------------- /Forms/PrintVouchers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/PrintVouchers.cs -------------------------------------------------------------------------------- /Forms/PrintVouchers.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/PrintVouchers.resx -------------------------------------------------------------------------------- /Forms/Walletgen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/Walletgen.Designer.cs -------------------------------------------------------------------------------- /Forms/Walletgen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/Walletgen.cs -------------------------------------------------------------------------------- /Forms/Walletgen.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Forms/Walletgen.resx -------------------------------------------------------------------------------- /Model/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/Address.cs -------------------------------------------------------------------------------- /Model/Base58.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/Base58.cs -------------------------------------------------------------------------------- /Model/Base58CheckString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/Base58CheckString.cs -------------------------------------------------------------------------------- /Model/Bip38Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/Bip38Base.cs -------------------------------------------------------------------------------- /Model/Bip38Confirmation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/Bip38Confirmation.cs -------------------------------------------------------------------------------- /Model/Bip38Intermediate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/Bip38Intermediate.cs -------------------------------------------------------------------------------- /Model/Bip38KeyPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/Bip38KeyPair.cs -------------------------------------------------------------------------------- /Model/Bitcoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/Bitcoin.cs -------------------------------------------------------------------------------- /Model/EncryptedKeyPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/EncryptedKeyPair.cs -------------------------------------------------------------------------------- /Model/EscrowCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/EscrowCode.cs -------------------------------------------------------------------------------- /Model/ExtraEntropy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/ExtraEntropy.cs -------------------------------------------------------------------------------- /Model/KeyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/KeyCollection.cs -------------------------------------------------------------------------------- /Model/KeyCollectionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/KeyCollectionItem.cs -------------------------------------------------------------------------------- /Model/KeyPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/KeyPair.cs -------------------------------------------------------------------------------- /Model/MiniKeyPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/MiniKeyPair.cs -------------------------------------------------------------------------------- /Model/MofN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/MofN.cs -------------------------------------------------------------------------------- /Model/PassphraseKeyPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/PassphraseKeyPair.cs -------------------------------------------------------------------------------- /Model/PublicKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/PublicKey.cs -------------------------------------------------------------------------------- /Model/ShaPassphraseKeyPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/ShaPassphraseKeyPair.cs -------------------------------------------------------------------------------- /Model/StringInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Model/StringInterpreter.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/README -------------------------------------------------------------------------------- /Reports/CoinInsert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Reports/CoinInsert.cs -------------------------------------------------------------------------------- /Reports/CoinInsertDense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Reports/CoinInsertDense.cs -------------------------------------------------------------------------------- /Reports/PCPrint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Reports/PCPrint.cs -------------------------------------------------------------------------------- /Reports/QRPrint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Reports/QRPrint.cs -------------------------------------------------------------------------------- /Ubuntu-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/Ubuntu-R.ttf -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/app.config -------------------------------------------------------------------------------- /bitcoinlogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/bitcoinlogo.ico -------------------------------------------------------------------------------- /note-Greyscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/note-Greyscale.png -------------------------------------------------------------------------------- /note-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/note-blue.png -------------------------------------------------------------------------------- /note-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/note-green.png -------------------------------------------------------------------------------- /note-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/note-purple.png -------------------------------------------------------------------------------- /note-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casascius/Bitcoin-Address-Utility/HEAD/note-yellow.png --------------------------------------------------------------------------------