Bitcoin Forum
April 25, 2024, 12:56:12 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Untraceable transactions which can contain a secure message are inevitable.  (Read 15744 times)
ByteCoin (OP)
Sr. Member
****
expert
Offline Offline

Activity: 416
Merit: 277


View Profile
April 17, 2011, 02:34:24 AM
 #1

There is a problem with bitcoin because transactions are, to a certain extent, traceable. Also, it seems to be desirable to be able to pass messages between sender and recipient. This post outlines a simple method of implementing untraceable transactions to which either party can attach messages. This type of transaction will be propagated across the network and incorporated into blocks just like a normal transaction because to all observers (except the sender and intended recipient) it is indistinguishable from a normal transaction. It's not immediately obvious that Bitcoin could easily be altered to prevent this new type of transaction if the consensus was that it was undesirable.

Prerequisite: The recipient's address needs to have a publicly visible public key or alternatively the sender needs to have independent knowledge of the public key. In normal circumstances, this means that the recipient needs to have spent some of the coins sent to that address whereupon their public key is in the block chain.

Step 1: The sender performs his side of a Diffie–Hellman key exchange by multiplying the recipient's public key by his private key.

Step 2: The sender uses the hash of the resulting point as the secret key to generate another address termed the "transfer" address.

Step 3: The sender sends the bitcoins to the transfer address (plus multiples of 0.01BTC if message transmission in step 4 is desired).

Step 4: If a message transmission to the recipient is desired, the sender prepares one or more message bearing "k" values instead of random numbers. The messages m is encrypted (xor will do) with the hash of the concatenation of the secret key for the transfer address with a sequence number starting with zero. The resulting k values are used by the sender for the transfer of 0.01BTC from the transfer address to some  other addresses until the message is complete.

Step 5: The recipient monitors the network or block chain for public key revelations ie the first spend from a new address. When a new public key is detected the recipient multiplies the public key point by their secret keys for their public receiving addresses.

Step 6: The recipient uses the hashes of the resulting points as the secret keys to generate candidate transfer addresses and monitors the block chain for transactions to these addresses.

Step 7: The recipient notices that the transaction crediting the "transfer" address matches the one of the addresses calculated in step 6

Step 8: If there are any transactions from the transfer address, the recipient hashes the secret key with a trial sequence number and decrypts the "random" k parameter to recover the message.

Step 9: As both the recipient and the sender know the secret key to the transfer address, the recipient takes ownership of the coins if they wish to by transferring them (possibly in combination with other coins) to one or more new addresses. The recipient can attach a number of messages readable by the sender to these transactions using the methods of step 4.

The recipient and sender can use the transfer address indefinitely and symmetrically to transfer bitcoins and secure messages back and forth forever as they wish. The sequence numbers are incremented to ensure that k values remain distinct and remain indistinguishable to third parties from random numbers even if identical secret messages are transmitted.

Advantages: The transactions are not traceable as they transfer control of bitcoins without crediting the recipient's published receiving address. They look like normal transactions. Transfer addresses facilitate message passing in the k values of transfer signatures.

Disadvantage: Disputes between sender and recipient cannot be resolved by third parties using the block chain evidence. This is the price of this type of untraceability.

ByteCoin
 
1714049772
Hero Member
*
Offline Offline

Posts: 1714049772

View Profile Personal Message (Offline)

Ignore
1714049772
Reply with quote  #2

1714049772
Report to moderator
1714049772
Hero Member
*
Offline Offline

Posts: 1714049772

View Profile Personal Message (Offline)

Ignore
1714049772
Reply with quote  #2

1714049772
Report to moderator
1714049772
Hero Member
*
Offline Offline

Posts: 1714049772

View Profile Personal Message (Offline)

Ignore
1714049772
Reply with quote  #2

1714049772
Report to moderator
Make sure you back up your wallet regularly! Unlike a bank account, nobody can help you if you lose access to your BTC.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714049772
Hero Member
*
Offline Offline

Posts: 1714049772

View Profile Personal Message (Offline)

Ignore
1714049772
Reply with quote  #2

1714049772
Report to moderator
1714049772
Hero Member
*
Offline Offline

Posts: 1714049772

View Profile Personal Message (Offline)

Ignore
1714049772
Reply with quote  #2

1714049772
Report to moderator
Mike Hearn
Legendary
*
expert
Offline Offline

Activity: 1526
Merit: 1128


View Profile
April 17, 2011, 07:47:39 AM
 #2

That's a neat system, but I'm not sure about the applications.

As both sender and recipient end up being able to spend the coins assigned to the transfer address, in any application where there is not high trust between the two parties the recipient will immediately move the coins to a private address (as you note). In that case, it boils down to a complicated way of doing the same thing that BitCoin does today, but with one extra address in the middle.

I think it'd help to more clearly define "traceable", and what the threat model is.
Mike Hearn
Legendary
*
expert
Offline Offline

Activity: 1526
Merit: 1128


View Profile
May 01, 2011, 11:16:43 AM
 #3

Yeah but as far as I can tell, it doesn't help.

If recipients are generating a new address per transaction as is best practice, you cannot link people together using just the block chain. You could potentially do so if you gain access to peoples wallets, but that's true even with this proposed system as you'd want to move the coins to an address you control quickly, anyway.

So if the threat model is "attacker can see the block chain", it doesn't add much. If the threat model is "attacker can access our hard disks", you still lose.

An interesting piece of crypto for sure though. It might find other uses in future.
just_someguy
Full Member
***
Offline Offline

Activity: 125
Merit: 100


View Profile
May 02, 2011, 02:24:36 AM
 #4

I think its inevitable too... thats why I've been working on keeping it out of the blockchain.
I have code now that given a bitcoin address (that has spent money) will encrypt as big a message you want to that address using ec ies without giving up any public or private keys of the sender and without costing a cent.
If there was an agreed upon spot to place or distribute these messages there would be no need to do something so complex.
I had it in mind for receipts and proving that you owned an address.
Gavin Andresen
Legendary
*
qt
Offline Offline

Activity: 1652
Merit: 2216


Chief Scientist


View Profile WWW
May 03, 2011, 11:52:34 PM
 #5

RE: agreed upon spot to place or distribute messages:

I think it is time to start experimenting with a <bytes> OP_DROP OP_DUP OP_HASH160 ...etc transaction type on the testnet.

And time to finish implementing headers-only-for-initial-download mode so new users don't have to wait so long to get their free Faucet bitcoins.

How often do you get the chance to work on a potentially world-changing project?
just_someguy
Full Member
***
Offline Offline

Activity: 125
Merit: 100


View Profile
May 04, 2011, 12:56:33 AM
 #6

I think it is time to start experimenting with a <bytes> OP_DROP OP_DUP OP_HASH160 ...etc transaction type on the testnet.

That would allow the <bytes> portion to contain a message correct?
Wouldn't that be opening pandora's box to a giant block chain?
ByteCoin (OP)
Sr. Member
****
expert
Offline Offline

Activity: 416
Merit: 277


View Profile
May 04, 2011, 01:07:28 AM
Last edit: May 04, 2011, 01:21:29 AM by ByteCoin
 #7

That would allow the <bytes> portion to contain a message correct?
Yes.
Wouldn't that be opening pandora's box to a giant block chain?
As I have indicated in previous posts and indeed in the first post of this thread, encoding substantial messages in transactions is already possible. Gavin's mooted proposed tolerance of OP_DROP transactions simplifies the implementation considerably and reduces messaging overheads. It also allows the popularity of messaging to be measured.

Additionally, Gavin's opinion is that the CPU time taken to verify signatures is a bottleneck for transaction processing. My messaging scheme would result in more signature verifications whereas OP_DROP would not.

One major cause of a balooning block chain would be the use of "mixnets".

My proposed solution to a giant block chain is forgetting most of it.

ByteCoin
Anonymous
Guest

May 04, 2011, 10:27:16 AM
 #8

This isnt a currency its twitter 2.0
 Smiley



Mike Hearn
Legendary
*
expert
Offline Offline

Activity: 1526
Merit: 1128


View Profile
May 04, 2011, 11:53:35 AM
 #9

OP_DROP just makes you pay for network bandwidth and disk storage rather than CPU costs. I think BitCoin nodes will be CPU constrained in future so it's not as risky as Satoshi thought it might be.

That said, I'm not really sure it's necessary either. Short messages are useful for what? You already need a new address per transaction to identify which user paid you, and if you want a conversation with the merchant good old email is just as reasonable. You can state which address you were given by the merchants website and sign with that key to link the email thread and transaction together.

And yes there are lots of cool optimizations to be made in reducing storage/overhead costs ....
matsh
Member
**
Offline Offline

Activity: 93
Merit: 11


View Profile
June 08, 2011, 11:17:18 AM
 #10

What about just adding to the block a "URL" to a Freenet "file"? Such files are (if I remember things correctly) permananent (as long as they are regularly requested) and can't be deleted.
publickeyhash
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
June 08, 2011, 05:17:33 PM
 #11

Is there any difference between the original post and simply sending the private key for an account? i.e. the blockchain does not know this account changed hands?

I was thinking about this a while ago, but it seemed to me that the sender could say buy a space pizza by sending his key to the pizzeria, and as long as the pizzeria doesnt spend the coins, the pizza customer could decide to keep his coins (since he still knows the private key).

I was thinking about a kind of mutual oblivious transfer preventing this? is this possible?
dNote
Hero Member
*****
Offline Offline

Activity: 896
Merit: 1000



View Profile WWW
October 19, 2014, 05:58:27 PM
 #12

Untraceable transactions which can contain a secure untraceable message are implemented in DarkNote XDN.
Whitepaper

DigitalNote XDN website http://digitalnote.org
XDN 1st blockchain deposits with interest & instant untraceable crypto messages GUI https://github.com/xdn-project/digitalnotewallet/releases
Bitcointalk topic https://bitcointalk.org/index.php?topic=1082745.new#new
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!