Bitcoin Forum
May 04, 2024, 09:20:28 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: [RFD] Bitcoin Deterministic wallet  (Read 6737 times)
da2ce7 (OP)
Legendary
*
Offline Offline

Activity: 1222
Merit: 1016


Live and Let Live


View Profile
June 03, 2011, 02:53:38 PM
Last edit: June 03, 2011, 03:07:03 PM by da2ce7
Merited by ABCbits (4)
 #1

The use of bitcoin requires that either users store their private data in a ‘wallet file’ in clear text or encrypted, this wallet file still needs protection.

However, there is only one sort of information within the wallet file that is important… the private keys.

Currently the private keys are generated from random data.  However, there is nothing stopping us creating these same keys deterministically.

This is what I propose:


Bitcoin should have the option to ‘load a deterministic wallet.’

Creating the Deterministic Wallet:

1.  User enters a new password (of good quality) into the ‘load/create a deterministic wallet’ dialogue:


Code:
A = sha256 ( password )

B(x) = sha256 ( x )

C(x) = sha256 ( A + B(x) )

Find x, where C(x) < 0x00000000FFFF0000000000000000000000000000000000000000000000000000

(x starts from 0, and increases)

 
2.  Bitcoin then supplies the user with a nonce, base58(x), that the user can supply to both:

   a.  save time in finding the nonce again

   b.  check if the password – nonce combo is correct

3.  Bitcoin then generates 1000 (or more at the users option) addresses:

Code:
D = C(x) , where x = nonce

Key1 made from sha256(D)

Key2 made from sha256(sha256(D))


4.  The bitcoin client then rescans the block chain for any transactions based upon the newly generated keys.

5.  Upon close, the bitcoin client forgets everything, including the password. (optionally we have a setting for the software to store the nonce for convenience)
 

This system means that if the user keeps the password secret (and, optionally, nonce to save time/check correct entry).  The there is NO RECORD or DIGITAL DATA that needs to be kept on any computer (other than the block chain).

This is far more secure than the current system… It is also resistant to brute-force attack, as there is a fair effort required to check through various password.

Edit:  The Goal of this system is so that anyone can use their wallet on any computer Smiley  no need to backup anything.

One off NP-Hard.
1714857628
Hero Member
*
Offline Offline

Posts: 1714857628

View Profile Personal Message (Offline)

Ignore
1714857628
Reply with quote  #2

1714857628
Report to moderator
"Governments are good at cutting off the heads of a centrally controlled networks like Napster, but pure P2P networks like Gnutella and Tor seem to be holding their own." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714857628
Hero Member
*
Offline Offline

Posts: 1714857628

View Profile Personal Message (Offline)

Ignore
1714857628
Reply with quote  #2

1714857628
Report to moderator
da2ce7 (OP)
Legendary
*
Offline Offline

Activity: 1222
Merit: 1016


Live and Let Live


View Profile
June 03, 2011, 02:56:25 PM
 #2

Please note!  This is not to 'replace' traditional wallets... but to complement them as an option.

One off NP-Hard.
da2ce7 (OP)
Legendary
*
Offline Offline

Activity: 1222
Merit: 1016


Live and Let Live


View Profile
June 03, 2011, 03:17:07 PM
 #3

Possible better password strengthening function than sha256

http://www.tarsnap.com/scrypt/scrypt.pdf

http://www.tarsnap.com/scrypt/scrypt-1.1.6.tgz

Thanks gmaxwell!

One off NP-Hard.
publickeyhash
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
June 03, 2011, 03:31:31 PM
 #4

Quote
Find x, where C(x) < 0x00000000FFFF0000000000000000000000000000000000000000000000000000
This requires to bruteforce 4 bytes = 32 bits ?
Garrett Burgwardt
Sr. Member
****
Offline Offline

Activity: 406
Merit: 256


View Profile
June 03, 2011, 03:36:25 PM
 #5

Seems to me this would just allow attackers to guess people's passwords and thus be able to steal wallets rather easily.
joan
Jr. Member
*
Offline Offline

Activity: 56
Merit: 1



View Profile
June 03, 2011, 03:39:08 PM
Merited by ABCbits (1)
 #6

I'm not sure I understood the idea correctly, if two users happen to use the same password, won't it generate the same private keys ?
Not only you'd need a strong password, but also a unique one.
da2ce7 (OP)
Legendary
*
Offline Offline

Activity: 1222
Merit: 1016


Live and Let Live


View Profile
June 03, 2011, 03:40:08 PM
 #7

Quote
Find x, where C(x) < 0x00000000FFFF0000000000000000000000000000000000000000000000000000
This requires to bruteforce 4 bytes = 32 bits ?

I believe that it is the same difficulty as a standard difficulty of 1

Seems to me this would just allow attackers to guess people's passwords and thus be able to steal wallets rather easily.

Yes... but the point is that people use strong passwords (weak passwords are weak).  It is also very expensive to check passwords if the as the password strengthening function takes a bit of time to compute.

One off NP-Hard.
da2ce7 (OP)
Legendary
*
Offline Offline

Activity: 1222
Merit: 1016


Live and Let Live


View Profile
June 03, 2011, 03:40:46 PM
 #8

I'm not sure I understood the idea correctly, if two users happen to use the same password, won't it generate the same private keys ?


That is the point... you use a random-strong password... I guess you cannot have your cake and eat it.

I mean, if you want a system that works no-matter what computer you decide to use the password on... swapping computers will be nothing more than using your password on a different computer.

One off NP-Hard.
publickeyhash
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
June 03, 2011, 03:43:42 PM
 #9

Quote
Seems to me this would just allow attackers to guess people's passwords and thus be able to steal wallets rather easily.

I completely agree if the nonce was deterministic (not exactly a nonce at all!)

Quote
Find x, where C(x) < 0x00000000FFFF0000000000000000000000000000000000000000000000000000

(x starts from 0, and increases)

Thus x is a direct function of password. Thus as Garrett pointed out, guess a password and the algorithm will create the account, moreover: lots of average users would accidentally end up sharing the same password/account.

The idea seems fine if x was a random secret number.
Garrett Burgwardt
Sr. Member
****
Offline Offline

Activity: 406
Merit: 256


View Profile
June 03, 2011, 03:45:07 PM
 #10

I'm not sure I understood the idea correctly, if two users happen to use the same password, won't it generate the same private keys ?


That is the point... you use a random-strong password... I guess you cannot have your cake and eat it.

I mean, if you want a system that works no-matter what computer you decide to use the password on... swapping computers will be nothing more than using your password on a different computer.

The only way I see this working is if you use a 20+ characters password with tons of different symbols, etc.

Even then, I'd not use it.
publickeyhash
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
June 03, 2011, 03:49:16 PM
 #11

Quote
Quote from: joan on Today at 03:39:08 pm
I'm not sure I understood the idea correctly, if two users happen to use the same password, won't it generate the same private keys ?


That is the point... you use a random-strong password... I guess you cannot have your cake and eat it.

I mean, if you want a system that works no-matter what computer you decide to use the password on... swapping computers will be nothing more than using your password on a different computer.

so you see this as a feature of the system? forcing people to use strong passwords on pain of losing/sharing money? its an interesting concept Cheesy
I have never heard of a strong correlation between mutual interests and mutual passwords.... but I can imagine people using concepts of interest as their password (sex/...)

but then why bother with x at all? deriving the private keys from password alone would be just as well...
da2ce7 (OP)
Legendary
*
Offline Offline

Activity: 1222
Merit: 1016


Live and Let Live


View Profile
June 03, 2011, 03:50:02 PM
 #12

The idea seems fine if x was a random secret number.

If x was a random secret number, there is something that MUST be remembered, why not just add the random number to your own password... the point of the nounce is to:

1.  save time (this means that we can use a much stronger password strengthening function, if we are not doing it every time, this makes searching through passwords much slower for an attacker... but not slow for a regular user that remembers their nonce)

2.  check if the user didn't mistype the password.


We SHOULD provide a option where the user put a 'account name' and 'some random number'  that is mixed into the password. A in a standard way... however these options should be optional.

It is the user's fault if they use an insecure password... like anything we should do the best we can to warn the user that they are being stupid... (eg a weak password)... but shouldn't stop them being stupid.


One off NP-Hard.
joan
Jr. Member
*
Offline Offline

Activity: 56
Merit: 1



View Profile
June 03, 2011, 03:52:47 PM
 #13

I really like the idea of being able to store the private key (or something to rebuild it) in my head though.
My concern is about the increased risk of collision in the much reduced keyspace.
da2ce7 (OP)
Legendary
*
Offline Offline

Activity: 1222
Merit: 1016


Live and Let Live


View Profile
June 03, 2011, 03:59:57 PM
 #14

The only way I see this working is if you use a 20+ characters password with tons of different symbols, etc.

Even then, I'd not use it.

There is nothing stopping the user from writing down a password.

I'd personalty recommend passwords like:

"da2ce7 is super sexy and a mad dog, I like to eat!!! cows are cool!!"

something like that nobody else would make... and and since brute-forcing is so hard... it is infeasible to make through a search.

One off NP-Hard.
publickeyhash
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
June 03, 2011, 04:11:02 PM
 #15

assuming that you want to allow colliding accounts/passwords if the user is dumb enough to to use "sex" as his password...

why do you need x at all?

I think x is simply a kind of salt (which does need to be remembered, by you (really not a salt but second half of the password) or the computer (fixed location computer salt))

your prescription for finding x is deterministic as a function of password. In effect, you are just applying a croocked form of SHA256.
Occams razor, if it does not add security leave it behind, and simply use SHA256(password) if you really want the same passwords to generate the same accounts...
speeder
Hero Member
*****
Offline Offline

Activity: 966
Merit: 501


Leading Crypto Sports Betting & Casino Platform


View Profile
June 03, 2011, 04:38:00 PM
 #16

Why not use a... user and password?


Instead of using password and nonce, with user and password, you can calculate the wallet from it.

It is somewhat insecure if someone guess your stuff? Well... yes. But it is very convenience, nice and would solve some bitcoin problems (like, how you spend bitcoins easily while away from your computer and not trusting in a company to do that for you).


The only problem that I cannot think around right now, is collision.

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
Anonymous
Guest

June 04, 2011, 03:43:34 AM
 #17

Why not plugin to keepass to let you generate a large secure password for your wallet ?

http://keepass.info/help/v1_dev/plg_keyprov.html
TierNolan
Legendary
*
Offline Offline

Activity: 1232
Merit: 1083


View Profile
June 28, 2011, 02:46:09 PM
 #18

I wonder if this would work well when combined with a majority secured wallet.dat

A shared secret allows you to split a secret into n pieces and it can be recovered as long as you have k of the n pieces.  k and n can be set to anything desired.

For example, if you split the secret into 5 pieces and set k to 3, then you could only recover the secret with 3 of the 5 files.

Each of the shares is the same size as the original file.

This would allow a user to split their wallet "seed" over 5 locations.  As long as at least 3 of them remain secure, then the wallet is secure and recoverable.

The problem is that every time you make a transaction with the default client, it writes to the wallet.dat file.  This means you have to collect all 5 pieces together, spend the money and then redistribute the 5 new pieces.  This is a massive hassle.

If this process is not performed correctly every time, it could cause the wallet.dat file to be unrecoverable.

With a deterministic wallet, you could make the password a few thousand bytes long if you wanted and protect it using the secret sharing method.

Alternatively, you could make the password a hard to guess/remember password and then distribute the shares to the 5 locations.  If you ever forget your password, you can recover it with 3 of the 5 shares.

This wouldn't even necessarily require that the default client is updated.  A utility could work entirely by updating the wallet.dat file.

It would require a utility that can generate a wallet.dat file with a few hundred unused keys from the deterministic program.  I assume that if there are free keys, the standard client uses them?

The method would be only a little hassle for the user.

Utility

read list of public keys in use for this wallet (stored in plain-text*).
run the deterministic wallet generator and generate a wallet containing the keys matching the public keys and also 100 additional keys.**

Default client

Start the default client
send your money (change will be sent to one of the 100 generated keys**)
Only perform a few transactions***
Close the client

Utility
Have the utility scan the wallet.dat file and write any used public keys back to the public keys file.*****

This could be scripted

utility -gen-wallet.dat -f pub_key_file_list -n 5 -s1 share1.dat -s3 share3.dat -s4 share4.dat -o /path/to/wallet.dat
bitcoin
utility -extract-keys -f /path/to/wallet.dat -o pub_key_file

The actual wallet.dat could be a link to a random disk, so it would clear when you remove power.

ln -s /path/to/ramdisk/wallet.dat ~/bitcoin/wallet.dat

I think this will cause overwrites to be redirected to the link target right?

*: This can also be determined from the block chain
**: This wallet should be written to a RAM drive
***: This is correct right?  The wallet won't generate a key if there are spare ones available in the wallet
****: It is critical that the spare keys are not exhausted
*****: Even if this is messed up, you can still get the keys back due to *

The main thing that could go wrong is if the client generated new keys.

1LxbG5cKXzTwZg9mjL3gaRE835uNQEteWF
da2ce7 (OP)
Legendary
*
Offline Offline

Activity: 1222
Merit: 1016


Live and Let Live


View Profile
June 28, 2011, 03:51:26 PM
 #19

Should check out what Stefan is developing for bitcoinjs.  Using a bitcoin master key.

One off NP-Hard.
bitplane
Sr. Member
****
Offline Offline

Activity: 321
Merit: 250

Firstbits: 1gyzhw


View Profile WWW
June 28, 2011, 06:49:51 PM
 #20

I like this idea and agree with da2ce7. I would prefer an email address and strong password to generate the key as this would further reduce the potential for collisions.

It would be really nice to have a client-side script (either browser plugin or self-hosted javascript) that can query a web service to get your balance from an email/password combo
Pages: [1] 2 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!