|
smeagol
|
 |
December 16, 2013, 09:39:50 PM |
|
Is there a service which can convert plaintext addresses and private keys into qr codes?
Thanks
|
|
|
|
|
|
|
|
|
|
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction. Advertise here.
|
|
|
|
|
|
|
|
|
|
Rannasha
|
 |
December 16, 2013, 09:51:48 PM |
|
You can use bitaddress.org, the "wallet details" tab lets you input a private key and it will generate a QR code.
Of course, to ensure more security, you can save the website to disk and disconnect the machine from the internet (or better yet, copy the saved page to an offline machine) before you input your private key.
|
|
|
|
|
MA5H3D
Member

Offline
Activity: 99
Merit: 10
|
 |
December 16, 2013, 09:55:34 PM |
|
brainwallet.org will do that among other things.
|
|
|
|
|
|
smeagol
|
 |
December 16, 2013, 09:56:59 PM |
|
You can use bitaddress.org, the "wallet details" tab lets you input a private key and it will generate a QR code.
Of course, to ensure more security, you can save the website to disk and disconnect the machine from the internet (or better yet, copy the saved page to an offline machine) before you input your private key.
I already have a vanity address and a priv key, so I would like to convert that.
|
|
|
|
|
Rannasha
|
 |
December 16, 2013, 10:17:45 PM |
|
You can use bitaddress.org, the "wallet details" tab lets you input a private key and it will generate a QR code.
Of course, to ensure more security, you can save the website to disk and disconnect the machine from the internet (or better yet, copy the saved page to an offline machine) before you input your private key.
I already have a vanity address and a priv key, so I would like to convert that. Yes, you can do that with bitaddress.org. It does more than generate keys. Open the page, go to the "Wallet details" tab, input your private key and it will make the QR codes.
|
|
|
|
|
|
smeagol
|
 |
December 16, 2013, 10:44:01 PM |
|
You can use bitaddress.org, the "wallet details" tab lets you input a private key and it will generate a QR code.
Of course, to ensure more security, you can save the website to disk and disconnect the machine from the internet (or better yet, copy the saved page to an offline machine) before you input your private key.
I already have a vanity address and a priv key, so I would like to convert that. Yes, you can do that with bitaddress.org. It does more than generate keys. Open the page, go to the "Wallet details" tab, input your private key and it will make the QR codes. Thank you!
|
|
|
|
|
empoweoqwj
|
 |
December 17, 2013, 09:49:22 AM |
|
You can use bitaddress.org, the "wallet details" tab lets you input a private key and it will generate a QR code.
Of course, to ensure more security, you can save the website to disk and disconnect the machine from the internet (or better yet, copy the saved page to an offline machine) before you input your private key.
I already have a vanity address and a priv key, so I would like to convert that. Yes, you can do that with bitaddress.org. It does more than generate keys. Open the page, go to the "Wallet details" tab, input your private key and it will make the QR codes. I second that. Bitaddress.org is excellent and easy to use.
|
|
|
|
|
|
Altoidnerd
|
 |
September 08, 2015, 05:28:00 AM |
|
Using the new bitcoin-core binaries in linux (be sure you have qrencode installed): addr=$(./bitcoin-cli getnewaddress) && ./bitcoin-cli dumpprivkey $addr| qrencode -o ~/Desktop/$addr.privkey.png && echo "private key dumped for: "$addr See http://altoidnerd.com/2015/09/06/how-import-a-bitcoind-address-private-key-into-breadwallet-ios-with-a-qr-code-using-bitcoin-core-for-ubuntu-linux/Keep in mind the above snippet generated a new address. You can use and address you have in mind e.g. "address": addr="address" && ./bitcoin-cli dumpprivkey $addr| qrencode -o ~/Desktop/$addr.privkey.png && echo "private key dumped for: "$addr Or if you have the private key as a string = "privkey": key="privkey"; echo $key | qrencode -o ~/Desktop/mykey.png && echo "private key qr mykey.png created for $key
|
|
|
|
|