Bitcoin Forum
July 09, 2024, 11:04:53 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Other / Beginners & Help / BTC block timestamp limited to year 2106, will bitcoin work after that ? on: July 30, 2012, 01:24:18 PM
Hi!

I recently had a look at the BTC protocol specs, and found out that the time stamp field of a block, which indicates when the block was created exactly, is limited to 32 bit. Doesn't this mean, that the BTC system can only be used until the year 2106?
thanks,
Mark
2  Other / Beginners & Help / Is generating a private key using /dev/random under Linux secure? on: July 20, 2012, 09:24:50 PM
Hi,
I'd like to generate a few bitcoin addresses for a paper wallet.
I tried www.bitaddress.org, it works fine but since I'm paranoid after reading this:
https://bitcointalk.org/index.php?topic=93129
 perhaps I should generate my own private key and use bitaddress.org offline only to generate the associated bitcoin address (public key).

I'm using linux.
How about this:
boot up a linux distro from an usb stick without going online.
move the mouse and type on the keyboard for a couple of mins to feed /dev/random with entropy
read 32 bytes (256bit) from /dev/random

for example:
head -c 32 /dev/random  | xxd

which dumps the 256bit sequence in hex format.
load the bitaddress.org javascript pre-stored on the usb stick.
go to the bitaddress.org page's Wallet Details and enter your private  key in hex format so that you get the associated public key (bitcoin address).
Write down on paper both public key and private key.
Turn off the computer.

Or should I take the output from /dev/random  and XOR it byte by byte with a long passphrase ? I guess if /dev/random works well then the additional XOR does not
add security.

Is there an alternative method to generate the public key (bitcoin address) from the private key by using a tool in C ? or by using the official bitcoin client?
If yes how?

Please let me know if the above method is regarded as very secure.

thanks for your suggestions,
Mark
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!