Bitcoin Forum
April 26, 2024, 03:53:49 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Bitcoin Redundancy For Security  (Read 1960 times)
genjix (OP)
Legendary
*
Offline Offline

Activity: 1232
Merit: 1072


View Profile
December 15, 2010, 10:21:15 AM
 #1

Hey,

I'm writing a proposal and talking about security. So far my weak point is that one computer holds all the Bitcoins.

Is there a way to have an online wallet spread over 8 computers and requiring confirmation from all 8 parties to carry out a command?

The closest idea I got was using GPG to encrypt different parts of the wallet and then one node reconstructs the wallet, does the command and re-splits it up amongst the other nodes.
1714146829
Hero Member
*
Offline Offline

Posts: 1714146829

View Profile Personal Message (Offline)

Ignore
1714146829
Reply with quote  #2

1714146829
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714146829
Hero Member
*
Offline Offline

Posts: 1714146829

View Profile Personal Message (Offline)

Ignore
1714146829
Reply with quote  #2

1714146829
Report to moderator
1714146829
Hero Member
*
Offline Offline

Posts: 1714146829

View Profile Personal Message (Offline)

Ignore
1714146829
Reply with quote  #2

1714146829
Report to moderator
1714146829
Hero Member
*
Offline Offline

Posts: 1714146829

View Profile Personal Message (Offline)

Ignore
1714146829
Reply with quote  #2

1714146829
Report to moderator
genjix (OP)
Legendary
*
Offline Offline

Activity: 1232
Merit: 1072


View Profile
December 15, 2010, 10:22:34 AM
 #2

And if one node that has the reconstructed wallet goes rogue and decides to send all the money to themselves- there's nothing you can do.
davout
Legendary
*
Offline Offline

Activity: 1372
Merit: 1007


1davout


View Profile WWW
December 15, 2010, 10:24:43 AM
 #3

you could also schedule something like
 - ensure you have a sufficient keypool for your needs
 - every day/hour/whatever compress and encrypt the wallet,
 - send it to your gmail, NAS, whatever

grondilu
Legendary
*
Offline Offline

Activity: 1288
Merit: 1076


View Profile
December 15, 2010, 10:37:48 AM
 #4

Hey,

I'm writing a proposal and talking about security. So far my weak point is that one computer holds all the Bitcoins.

Is there a way to have an online wallet spread over 8 computers and requiring confirmation from all 8 parties to carry out a command?

The closest idea I got was using GPG to encrypt different parts of the wallet and then one node reconstructs the wallet, does the command and re-splits it up amongst the other nodes.

Splitting your wallet is not a bad idea.  Just be carefull to leave more than one instance of each part, though.

Actually if you use N computers, then I think you should make N copies for each Nth part of your file, otherwise you increase the risk of loosing everything in case one computer is down.  But you need to study it more seriously if you want an exact probabilistic approach to this.

Anyway, spliting a file in several parts is easy in unix.  Just use the 'split' command.

genjix (OP)
Legendary
*
Offline Offline

Activity: 1232
Merit: 1072


View Profile
December 15, 2010, 11:55:00 AM
 #5

What I'm asking though, is that with this scheme you're trusting ONE person.

The one person who re-assembles the wallet and does the transaction.

What if he sent all the funds to himself?

How can we have all 8 nodes together confirm to send BTC with each other's consent?
grondilu
Legendary
*
Offline Offline

Activity: 1288
Merit: 1076


View Profile
December 15, 2010, 12:08:53 PM
 #6

What I'm asking though, is that with this scheme you're trusting ONE person.

I don't quite follow you.  You should trust nobody.

You don't intend to store your wallet without encrypting it, do you ?

theymos
Administrator
Legendary
*
Offline Offline

Activity: 5180
Merit: 12900


View Profile
December 15, 2010, 04:10:21 PM
 #7

Script supports creating transactions that can only be redeemed with the signatures of several public keys. So if someone wants to send one of these coins, they would have to get signatures from all of the other "owners".

Implementing this in a convenient way would be tough, and it would be blocked by IsStandard.

1NXYoJ5xU91Jp83XfVMHwwTUyZFK64BoAD
genjix (OP)
Legendary
*
Offline Offline

Activity: 1232
Merit: 1072


View Profile
December 15, 2010, 04:43:44 PM
 #8

Implementing this in a convenient way would be tough, and it would be blocked by IsStandard.

Why does IsStandard block this? It's a great idea. If a wallet requires the keys of several people then it's possible to have distributed security instead of placing your trust in one source.
theymos
Administrator
Legendary
*
Offline Offline

Activity: 5180
Merit: 12900


View Profile
December 15, 2010, 04:54:11 PM
 #9

Why does IsStandard block this?

IsStandard blocks everything that is not standard...

1NXYoJ5xU91Jp83XfVMHwwTUyZFK64BoAD
davout
Legendary
*
Offline Offline

Activity: 1372
Merit: 1007


1davout


View Profile WWW
December 15, 2010, 05:17:44 PM
 #10

IsStandard blocks everything that is not standard...

It's a client limitation and IMO lots of miners will remove it eventually.

Gavin Andresen
Legendary
*
Offline Offline

Activity: 1652
Merit: 2216


Chief Scientist


View Profile WWW
December 15, 2010, 05:40:46 PM
 #11

Implementing this in a convenient way would be tough, and it would be blocked by IsStandard.

No, implementing it would be easy.  Implement it (don't forget the UI), test it on the test network (where it is pretty trivial to get non-IsStandard stuff into blocks), and then lobby for a new 'standard' transaction type.

theymos, please stop acting like the current IsStandard test is set in stone. It is not, and, as Satoshi said, new versions of the client are rapidly adopted by a majority of the network, so introducing a new transaction type will not be a big deal.

How often do you get the chance to work on a potentially world-changing project?
genjix (OP)
Legendary
*
Offline Offline

Activity: 1232
Merit: 1072


View Profile
December 15, 2010, 06:02:16 PM
 #12

Thank you. This is great.
theymos
Administrator
Legendary
*
Offline Offline

Activity: 5180
Merit: 12900


View Profile
December 15, 2010, 09:59:23 PM
 #13

No, implementing it would be easy.

I'm not saying it's difficult because it would currently be blocked by IsStandard. You'd need new wallet code, new UI code, and some way to sign a transaction that hasn't already been published (probably new network protocol extensions).

IsStandard is just one of many hurdles. I'm particularly irritated about IsStandard because it requires developers to appeal to a central authority.

1NXYoJ5xU91Jp83XfVMHwwTUyZFK64BoAD
Pages: [1]
  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!