Bitcoin Forum
May 06, 2024, 03:02:09 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Development & Technical Discussion / Feedback on P2SH web wallets on: November 07, 2013, 07:06:57 PM
Hey guys -

Recently I've been toying with how to better utilize multi-signature addresses (P2SH) as a mechanism for safer web wallets.  Basically, I think we should all be utilizing P2SH instead of single-key bitcoin addresses.  That led me to writeup the following idea.  So far, it has gotten pretty good feedback, but I wanted to share it here to see what you guys think.

The full whitepaper is available at this link (https://bitgo.com/p2sh_safe_address), but I've also included the text here.

Any feedback would be super.

Hope you find this interesting.

Mike







P2SH Safe Address
mike belshe
mike@bitgo.com

This paper describes a mechanism for using Bitcoin’s P2SH functionality to build a stronger, more secure web wallet.

Background
Bitcoin addresses are secured today using public key cryptography and the Elliptic Curve Digital Signature Algorithm (ECDSA). This offers very strong security. But the secret keys used within ECDSA are lengthy 256 numbers which humans can’t remember, and the security of your bitcoin hinges on how safely you can protect this key from others. To help us protect and manage our keys, users employ bitcoin wallets. There are many wallets available to choose from, and each offers its unique benefits for ease of use, security, and features. But wallets can be divided into two basic categories:
Client-side Wallets
These wallets, such as the original Satoshi Client, run using software installed locally on the user’s computer.
Web Wallets
These wallets are hosted on a web site and require no custom software installation from the user.


Client-side wallets
The advantage of a client side wallet is that your bitcoin keys are entirely your own. No intermediaries are required to help you transact. The disadvantage of the client side wallet is that the security is entirely your own. In effect you are the guard of your own bank. As such you need to: prevent malware and viruses from stealing your keys maintain and update proper backups of your keys enforce physical security of the computer(s) containing the keys (e.g. locked with an encrypted hard disk). Accessing your bitcoins from multiple computers can be difficult, as it requires you to transfer the keys safely between multiple computers. Further, because most users take extra precautions with their passwords for their bitcoin cash, forgetting or losing unusually ‘strong’ passwords becomes a real threat of loss.

Web Wallets
Web Wallets have the advantage that they are accessible through the web, from anywhere. The web site hosting your wallet needs to be a trusted party, as they often require direct access to your keys, or they may hold your keys while you don’t have them at all. Assuming that the website does a good job managing the security of your keys, this can be an advantage, as you don’t need to do it yourself.
But the disadvantages are obvious. A web site holding many keys for millions of users is a very obvious target for attackers. If the web site is hacked, you will lose your bitcoin. Similarly, if the website is shutdown due to failure to meet regulatory compliance, you will lose your bitcoin as well.

Pay To Script Hash (a.k.a. P2SH)
P2SH is a new type of bitcoin address which was introduced as part of Bitcoin Improvement Proposal 16 (BIP 16) in early 2012. P2SH addresses can be secured by more complex algorithms than traditional bitcoin addresses. In this paper, we evaluate using a 2-of-3 signature address, which we’ll call a “2-of-3 address”.
Unlike traditional bitcoin addresses, which are secured with a single ECDSA key, 2-of-3 addresses are secured with three ECDSA keys. Depositing funds into the 2-of-3 address is the same as depositing funds into a standard bitcoin address. However, withdrawing funds from the 2-of-3 address requires at least 2 of the 3 keys to sign.

Using a 2-of-3 address offers several advantages:

  • you can give a trusted party a single key for final approval on transactions without enabling them to initiate transactions on your funds alone.
  • you can lose a key but not lose access to your funds.
  • you can share a key with multiple, trusted parties who individually cannot access your funds, but can if they work together.

A Proposal for a 2-of-3 Address Web Wallet Implementation
In this section, we propose an implementation of a web wallet using the 2-of-3 address. It provides the following features
Safety
  • The service cannot initiate a transaction by itself
  • Stealing the user’s online password is not sufficient to steal funds
  • Stealing the user’s online private key is not sufficient to steal funds
  • Malware on the user’s computer cannot steal funds
Convenience
  • The user can access his funds from any computer
  • The user does not need to remember his private key and can access funds with a password and two-factor authentication.
Recovery
    The user can recover funds even if the service is shutdown due to regulatory reasons[/li]
  • The user can lose his website password and not lose his funds
  • The user can lose his private key and not lose his funds
Privacy
  • Privacy must be maintained for the user’s funds

This implementation will rely upon:
  • A service (e.g. a website) with all communications over TLS.
  • Coordination between a browser and that service
  • Use of 2-factor authentication
  • Use of strong passwords
  • 2-of-3 Address Creation
The mechanics of creating the 2-of-3 address is very important. In this proposal, it will be done both on the user’s computer and on the website. Critically, the user will generate 2 keys while the server will generate one. Address creation time is the only time when two or more of the keys are on the same computer concurrently.
The process starts with the user’s browser (or client-side key creator) generating 2 ECDSA keys:

The user’s key-pair
A backup key-pair

The backup private key-pair will be printed out and stored completely offline. It is only for fund recovery. The backup public key will be stored with the service. The service never sees the backup private key and cannot use it to unlock funds.
The user’s private key will be encrypted on the user’s machine with a strong password of the user’s choice. The encrypted private key and the public key will be stored in the service. Because the private key is encrypted with a password the service has never seen, the service cannot use this key to unlock funds.

The server will then create a 3rd key. The private key will be encrypted with a strong password known to the service and stored on the server. The server will use the 2 public keys from the user as well as the service key to create the 2-of-3 address. The server will notify the user of the server’s public key, as this will be critical for recovering funds from the address if the service ever goes down. The user will print out a copy of all 3 public keys and store them securely.

With this system, we now have an address where the user has 1 key, the service has 1 key, and the 3rd key has been saved for later use.

Withdrawing Funds from the 2-of-3 Address
To withdraw funds from the 2-of-3 address, the following steps will need to take place.
First, the user will login or authenticate to the service, and inform the service that she will make a withdrawal. The service will require the user to further authenticate with a 2-factor authentication challenge to a smartphone or mobile device. Note: 2-factor authentication is required because even strong passwords can be stolen with a keylogger.

Upon validation of the 2-factor authentication, the service sends the user’s encrypted private key to the user’s browser. The browser will prompt the user for the user’s password to unlock the encrypted private key.

Executing within the user’s browser, the application creates the bitcoin transaction for the withdrawal, unlocks the encrypted private key, and signs the transaction with a single signature.

Finally, the signed transaction is then sent to the service. The service validates the transaction, and if suitable, applies the 2nd signature using its private key. Note that the service will likely implement transaction limits. If, for some reason, the user's account was compromised, the service can refuse to sign large transactions unless further authentication or the backup key signature is presented.

Maintaining Privacy
To maintain maximal privacy, it is important to not re-use bitcoin addresses. However, re-generating such keys repeatedly with each transaction would make many of the backup benefits that come with this system difficult. Users of bitcoin standard addresses already face this problem today and use a variety of deterministic wallet mechanisms to generate multiple keys from a single source.
The same techniques can be applied to the 2-of-3 address. Any key used as a signature should be rotated to a new address based on the next sequence in the deterministic key.

As a compromise solution, the 2-of-3 address offers one more option: only rotating the server's key. Since the 2-of-3 key is generated from 3 keys, one of which is managed by the service, we can rotate the user's funds to a new address by only rotating the server’s key. The resulting address cannot be correlated to the original 2-of-3 address. However, upon spending of the outputs, the public keys will again be revealed and a correlation could be made at that time. To maintain the ability for the user to extract funds without the service, the service will need to send the newly minted service public key to the user for safekeeping. This can be done via email. But again for maximal privacy, use of deterministic key rotation is recommended.

Other Advantages
Using multi-signature wallets provides flexibility for the user to share keys with trusted family without exposing all funds. For example, a user may decide to give one key to his sister, and another to his lawyer, with instructions to get the bitcoin when the user dies. With a traditional bitcoin address, the lawyer and sister would both have full access to the user’s funds. With a 2-of-3 wallet, they would need to collude against the user. But overall, the 2-of-3 address offers a lot of flexibility.
Weaknesses
No security mechanism is perfect. One potential weakness with the 2-of-3 address is that it does have 2 of the 3 keys online in the user’s browser at the time of address creation. Malware that specifically targeted an application using 2-of-3 wallets could lie-in-wait of an address to be created, steal the keys, and then extract the funds later. However, any wallet, client or server suffers from this problem. With a 2-of-3 address, the exposure to malware is mostly limited to address creation time, whereas traditional addresses are exposed to this weakness any time you transact. Hardware wallets may be the best mitigator against this particular attack.
2  Economy / Trading Discussion / bitgo arbitrage tool on: August 21, 2013, 10:00:28 PM
I hacked up a little arbitrage tool a couple of weeks ago which looks at the various order books and factors out some of the fees.  It simulates coinbase as an exchange too, assuming that they'd honor their posted price for large purchases (may or may not be true).  If anyone wants to play with it, here you go.  But it's not a real 'product':

   https://bitgo.com/arbitrage

My thoughts:
   - As an industry, I hope all sites will stop citing MtGox prices.  By doing so, we're propping up an exchange that is fundamentally broken and will be hurtful to real bitcoin users.  They are broken because even if you virtually cash out there, you don't really have the money.  It is not possible to withdraw in a reasonable period of time.  The money is illiquid at best and gone at worst.

   - I believe the run-up for MtGox prices is due to supply and demand.  As the top-brand for bitcoin purchasers, new buyers are still willing to go to that site, because we're all citing it as a trustworthy place to go.  However, large sellers have left because they can't have substantial funds tied up in MtGox.  Even if you trust MtGox, the governments are too unpredictable to trust.  This leaves us with steady demand to buy but decreasing supply -- and the prices go up.

Anyway, hope someone finds this tool useful as a mental exercise if nothing else!

Mike
3  Other / Beginners & Help / Which do you prefer, a constant bitcoin address or anonymity? on: June 22, 2013, 09:30:11 AM
I'm curious about how people feel about bitcoin anonymity and changing addresses.

Best practices recommend that when spending money, that you move the remainders to an alternate account.  The side effect of this is that the address holding your bitcoin is constantly changing (and its a little complex to wrap your head around, because it is different from your bank).  The advantage of it is that it is harder to trace.  If you keep using the same bitcoin address, other parties can quickly figure out who you are.

Here is some discussion:
   http://bitcoin.stackexchange.com/questions/1629/why-does-bitcoin-send-the-change-to-a-different-address

Some wallets seem to return change to the sending address, like this one:
   https://blockchain.info/tx/4560433712e9586d8b0db35c7baf992998f5cc63c92c317b8758a363672f913e

Other wallets seem to return change to new addresses, like this one:
   https://blockchain.info/tx/dddbabfe02c77d6d7c8e6f06e8cb78bf5f9d172d82e8671450ec513623238212


Poll:  which do you prefer for small amounts of money (< 10BTC):
    a)  Anonymity
    b)  Constant bitcoin address

Mike

   
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!