Bitcoin has been forked to be used as a distributed DNS system called namecoin. It can be used generically to have distributed confidence of a chain of events and probably has applications outside of DNS and digital currency.

I couldn't find any other examples and wondered if perhaps it is known in the compsci world by some other name, or if there is just an example I happen to be missing.

link|improve this question

1  
Note: there is a bitcoin stackexchange proposal where that kind of question will be welcome. – Stéphane Gimenez Jul 29 '11 at 15:46
feedback

2 Answers

up vote 5 down vote accepted

I have an excellent non-answer for you: It's going to be difficult to determine if Bitcoin's techniques are truly unique. (that's the tl;dr version - read on for more potentially pointless pontification)

It's more specialized than even "Computer Science" - it's cryptography. Bitcoin is more likely using interesting combinations of existing techniques. (OK, technically, just about everything is a interesting combination of existing techniques. Take digital signatures as an example; you take an asymmetric key pair, and a message digest algorithm, apply the private key to the digest and poof we call that a digital signature. Was a "digital signature" the first of its kind? Perhaps, but only because of asymmetric cryptography did it come to exist.)

The field of cryptography is awash in absurd amounts of academic research on esoteric protocols to solve all kinds of problems we "normals" just don't think about everyday. My advice is to start reading books on cryptographic techniques. You'll probably find an author with a slight variation on the protocol you're interested in, but he gave it a completely different name.

IANAL, but I'd bet that if the Bitcoin creators were interested in the patentability of what they created, and they had money to hire a patent lawyer, the USPTO would almost certainly classify it as unique enough to issue a patent. That would legally classify the technology as a "unique invention."

EDIT: Two links to get you thinking in the right direction (may or may not be directly applicable to Bitcoin):
Cipher-block chaining
Hash Chain

link|improve this answer
I'm going to go ahead and accept this non-answer answer since it answers the question I meant to ask, even if I didn't. The cipher-block chaining was the part I was wondering about. – geoff May 10 '11 at 14:20
The cipher-block-chaining Mode Of Operation isn't related to how bitcoin works. A merkle tree is a closer match, as is the hash chain (well, sort of). – Nick Johnson May 10 '11 at 17:37
feedback

Like most things in cryptography, BitCoin takes existing algorithms and applies it in new ways. We learned about basically this same protocol in Crytography class in college several years ago, but this is the first I've heard of it actually being applied in the real-world.

And, like all things security, you can learn everything you could every possibly want to know about BitCoin from Steve Gibson's and Leo Laporte's excellent security podcast, Security Now (episode 287)

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.