Bitcoin makes an intensive use of cryptography to do everything: coin mining, authenticating transactions, etc.

I wonder if it is built future-proof, i.e. which will allow stronger algorithms to be used instead of current ones, or it is locked to what is using now, since of course we can expect what is "totally unbreakable" now will be much weaker in future.

Does anyone know it well enough to answer this question?

link|improve this question

2  
I see other, bigger problems with bitcoin, personally - it relies on all the nodes receiving and authenticating all transactions, which seems like a major scalability issue, not to mention a problem for new nodes joining the system. – Nick Johnson Apr 11 '11 at 1:48
7  
Bitcoin has been designed from the beginning to allow for "thin" clients who don't have to download and authenticate all transactions. – eMansipater May 20 '11 at 18:35
1  
Note: there is a bitcoin stackexchange proposal where that kind of question will be welcome. – Stéphane Gimenez Jul 29 '11 at 15:42
2  
2  
FWIW, @ripper234: we generally don't migrate questions - especially older questions - to beta sites without a very good reason. – Shog9 Dec 25 '11 at 23:55
feedback

4 Answers

up vote 24 down vote accepted

Upgrades to the Bitcoin protocol that break compatibility are implementable by social mechanisms but not by any technical process, which is by design. In order to change the hashing or signing algorithms in the event that new techniques weaken them, the following process could be followed:

  1. As soon as the existing algorithms are discovered to be weakened, have a trusted entity sign a copy of the existing blockchain, marking it as authoritative via a non-weakened algorithm.
  2. Create a new protocol that 'respects' the existing blockchain (which contains all records of bitcoin ownership), and allows for an upgrade path to exist indefinitely.
  3. Implement the new protocol dormantly in one or more clients, with a designated block number to switch over, and the trusted version of the blockchain hardcoded in.
  4. Convince the vast majority of Bitcoin users that your trusted entity is trustworthy, and to switch to the new client(s) before the designated block is mined. There really is no equilibrium allowing both versions to coexist, since people who own bitcoins will be able to spend them in both communities. Unless the modified client achieves near-universal adoption before the designated block is mined, users will switch back before the change goes live.
link|improve this answer
8  
I suspect people will be less willing to accept payments in a possibly compromised blockchain, so migration may be fairly quick. – mbarkhau Jun 17 '11 at 10:57
3  
And as an update, several recent client versions have "broken compatibility" by changing the protocol--in particular, the handling of fees given the increased value of bitcoins. The changes were eagerly adopted by the community in general, and the changeover happened exactly as I described, though by successive versions rather than a block number in particular. Because the client with the dormant protocol was accepted near-universally, the change was rolled out live in the next version shortly after. And everything worked like clockwork--you can now send transactions with much smaller fees. – eMansipater Jul 12 '11 at 21:41
It might be possible to do a transition to a new system without a "flag day", by requiring that old bitcoins be spent in an unredeemable fashion (see e.g. bitcointalk.org/index.php?topic=50206.80) in order to get bitcoins in the new protocol. – dlitz Jan 24 at 6:02
feedback

After reading through the spec, I believe the answer is no.

And thinking through it, I can't think of an obvious way to make it possible to change the underlying hash-algorithm: the protocol is completely distributed, so there is no simple way to make the decision to upgrade to a newer algorithm.

It would seem relatively easy to upgrade the asymmetric algorithm used for signing, though (ECDSA).

What might happen sometime in the future, when people starts worrying about the security of SHA256, is that a competing scheme (Bitcoin 2.0 ?) will get started with a builtin way of exchanging bitcoins for the new currency.

link|improve this answer
1  
Which part of the spec looks weak to you? – CodeInChaos Apr 10 '11 at 19:59
3  
@CodeInChaos: I don't think any part of the spec looks weak. – Rasmus Faber Apr 11 '11 at 5:17
3  
This answer is incorrect. The current consensus among the core development team (as I understand it ) is that it is completely possible to change the underlying hash-algorithm. A specific block will be chosen upon which the change will go live. For example, block number 2000000 could be the block in which a new hashing algorithm will begin to be used. The community then has until that block is created to tell everybody about the upcoming switch and distribute clients that are able to handle it. – num1 Jun 27 '11 at 6:20
2  
@num1: That would basically create a new currency. If one person has calculated block 2000000 using SHA-256 and another person has calculated it using SHA-3 who is to say who is right? The "core development team" has no more control over the scheme than anyone else. If the change is backed by almost everyone it could very well work, but it would in effect be a new protocol. And certainly there is no way that you could claim that changing the underlying has function is part of the protocol, which is what the OP asked. – Rasmus Faber Jun 27 '11 at 6:56
2  
I think we are splitting unimportant hairs here. You are correct in that there is no automated and purely technical way to make the switch. However I believe that since there is no "bitcoin protocol" (we only have a reference implementation) agreeing to change it does not constitute declaring the result an entirely new currency. Progress happens when the dev team makes a change they think works best, after consulting the community, and then the community adopts it if they like it. This has happened. It is currently happening; and I don't see you saying that we're using "bitcoin v9." – num1 Jun 27 '11 at 15:55
show 5 more comments
feedback

I think you can upgrade to a newer crypt by just adding new commands (for the new algorithm) to the bitcoin transfer scripts. By the way, the old transactionts, crypted with the old algorithm, cant by spend a second time, so the old block would not be importent when it is not so secure.

sorry 4 my english ;)

link|improve this answer
feedback

Answers to that question vary a lot. Some say that SHA256 is at the core of bitcoin, some say it could be "easily" replaced.

The true answer is that a decentralized money solution must be more flexible.

The solution I see is more a banking protocol on top of bitcoin or on top of any money mechanisms (like ripple). That way, the underlying money (bitcoin, ripple) can be replaced transparently by the "banks".

Such a protocol is described here: http://ploum.net/post/bitcoin-banking

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.