Which coins offer a 2 factor authentication feature built into the blockchain without a centralize authority?

1

1

Which coins have the ability to offer a 2 factor authentication feature where it requires a secondary approval mechanism in order to spend from an address?

Patoshi パトシ

Posted 2017-05-05T15:54:36.973

Reputation: 8 911

1How would that work? Blockchains can't send emails or receive SMSses. The transaction sender has to prove to the rest of the system that a spend was authorized. You could use multisig pretty much anywhere, and require a signature from both a desktop system and a phone, for example, but that's it.Pieter Wuille 2017-05-05T15:58:46.183

Is there a platform that lets you have a multi-signature setup on your phone and desktop? I guess how would one do this for a Bitcoin transaction. Say I made a transaction on my desktop and then needed approval on my phone. How does my phone know that my desktop is making a transaction?Patoshi パトシ 2017-05-05T16:34:10.210

You can use bitcoind's raw transaction interface to do this. It's your responsibility to create a valid transaction that the network accepts. The currency or blockchain can't help you coordinate between the two signing devices.Pieter Wuille 2017-05-05T16:49:59.063

1To be clear: I think there are is currently no consumer-friendly ways to do what I'm describing. But that's due to a lack of available software, not a missing feature of the chain.Pieter Wuille 2017-05-05T16:52:32.050

thanks pieter. this is something i'm trying to solve... im not sure how this can be done as the transaction creator needs to somehow let the other device know it needs to sign this new transaction it created. will investigate further.Patoshi パトシ 2017-05-05T18:11:15.630

Answers

1

Have a look at byteball (http://byteball.org). It supports n-of-m wallets out of the box which can be used to implement a basic 2FA mechanism (2-of-2 with your desktop and your smartphone, for example.)

It also has a chat mechanism built in, which can be used to communicate between the devices and which would probably enable you to do what you intend.

There are a number of other interesting features listed at the web site.

Hans-Martin Mosner

Posted 2017-05-05T15:54:36.973

Reputation: 514