Bitcoin Forum
May 03, 2024, 08:32:15 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 [186] 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 ... 288 »
3701  Bitcoin / Development & Technical Discussion / Re: A Non-Outsourceable Puzzle to Prevent Hosted Mining on: October 10, 2013, 09:50:39 PM
Arguably the reduction in 1 block commitment security might have useful benefits in security practices. Tongue

I've wondered before if some kind of chameleon hash couldn't be used for anti-censorship.  E.g. miner thinks he's mining transaction A but no no no there really exists a transaction B that he equally mined... but I've never found a way to make it work. Maybe I should think about using a proof of knoweldge.

I guess the biggest problems I can see with your idea are that:

(1) No one currently cares.  Pools, for example, can rob their miners undetectably... they _could_ do things to prove that they were not cheating, but none do.  Miners could use P2Pool which can't rob miners, but most do not. I imagine the story will be the same for cloud mining services, and they'll be able to use even more arguments about reputation and such to claim their honesty.

(2) The standard Mike Hearn argument: Part of the reason that Bitcoin is viable is that its very comprehensible (at least in broad strokes, if not for the subtle details) to basically any technically minded person, invoking some kind of zero knoweldge thing to _enable_ a specific kind of cheating is far more complex than anything currently in Bitcoin, even if it is a neat idea.

I guess the counter argument to (2) is that a lot of people initially believe its possible for miners (e.g. mining in a pool) to steal work, and it takes some effort to convince them that they can't.  Your idea would, in some ways, make mining more intuitive. I suspect its not possible to avoid breaking pooling, even in its most harmless forms, since anything that preserved pooling for payment would by definition be proving that the right parties were getting paid.

3702  Bitcoin / Development & Technical Discussion / Re: Worst case scenario on: October 10, 2013, 06:00:37 PM
What if the alert system key(s) is compromised? Any mechanism to revoke the old key and migrate to a new one?
A maximum sequence alert can be sent which will override all other alerts and will display a static prefabricated message:

"URGENT: Alert key compromised, upgrade required"
3703  Bitcoin / Development & Technical Discussion / Re: Worst case scenario on: October 10, 2013, 04:32:22 PM
- An attacker could break directly into the source control where the source code is stored and unnoticed injects his code which is then automatically include in the next version.
  But since bitcoin is open source, the attacker should hide its code in a file where people rarely look into or file which at first glance does not look important but are indeed source files

This won't work. Everyone looks at diffs. Making the change in something that changes all the time would be a better strategy. In GIT it is not possible to make invisible changes either, and rewriting the history will make all git clients refuse to pull until forced.

Quote
- An attacker could hack a computer of one of the bitcoin client developers (Either through direct physical access or through some trojan)
- The attacker could threaten one of the bitcoin developers and such force his to do what he wants
If the system is vulnerable to this, then you can remove the third party "attacker" from the equation: One of the developers could just do this if it were possible.  Hopefully, enough people are auditing all changes that this wouldn't be possible.

Quote
- An attacker could break into the website bitcoin.org and place his malicious client for download, or redirect bitcoin.org via some dns attack to his own (same looking) website
  With this attack, the checksum of the client won't be ok but how many users will (or even know how to) check that?

About 1% check. But users update very slowly and we intentionally do not have a forced auto-update. And there are people running automated signature tests who would quickly notice a problem.

Quote
This are my greatest fears. Please tell me that these scenarios are almost impossible to happen. So the question is, could this be possible?

Certainly it would be possible, few things are not possible.  It's less clear that there would be a large amount of funds taken this way...
3704  Bitcoin / Development & Technical Discussion / Re: Isn't the output of SHA256 *slightly* too big to use for a private key? on: October 10, 2013, 05:23:29 AM
You are more likely to introduce a bug in handling the special case than the chance of handler being called even once in the entire lifetime of your application.
It's quite easy to test the retry, simply change the comparison criteria. To do less creates a certificational weakness which reduces the signature security below 128 bits. The level of testing required to adequately address isn't substantial compared to _everything else_ about the process, as there are many other mistakes you could make which would readily leak the private key but leave the software apparently working correctly.
3705  Bitcoin / Development & Technical Discussion / Re: NSA and ECC on: October 08, 2013, 05:15:47 AM
In other words, is there any possible efficiency argument that can be made for the selection of G?
In my gut I expect that any G is equally computationally difficult as far as P = n * G goes.  Correct?
Not for our G.

It should be possible, with an expensive search (e.g. >2^32 tries), to find a G that results in a lower hamming weight in the multiplies in a particular implementation and get a very small speed improvement. But I can find nothing about our G that suggests such a thing was done.
3706  Bitcoin / Development & Technical Discussion / Re: Deterministic Usage of DSA and ECDSA Digital Signature Algorithms (RFC 6979) on: October 07, 2013, 10:08:36 PM
However there's a flag to activate this check. Most of the unit tests in the reference implementation do not take even 'S' into account yet.
This will be changed to the alternative I described.
3707  Bitcoin / Development & Technical Discussion / Re: Deterministic Usage of DSA and ECDSA Digital Signature Algorithms (RFC 6979) on: October 07, 2013, 09:12:56 PM
Why should S be even? Any citation?
To prevent third parties from changing your txids out from under you and invalidating transactions spending your unconfirmed transactions by replacing S with the alternative value which also allows the signature to pass.  This malleability can be used to create enormous nuisances for Bitcoin users, causing stuck transactions and making innocent people look like malicious double-spenders, as well as can be abused to extort people in some escrow protocols.

See the second half of: http://www.mail-archive.com/bitcoin-development@lists.sourceforge.net/msg02721.html

There are multiple ways to remove this 1-bit of freedom. One way is to make S even. Another way, now used by bitcoin-qt git, is to make s < order/2. The advantage of this way of removing the vs others freedom is that it also reduces the average signature size slightly.  I now prefer the s < order/2 version of this just because it produces smaller signatures and the flip is even easier to implement than the even/odd version.
3708  Bitcoin / Development & Technical Discussion / Re: Instant confirmation, call it "confirmed-by-owner" on: October 07, 2013, 05:21:57 PM
How is this different
Please read the last line of my above post.
3709  Bitcoin / Development & Technical Discussion / Re: strip the reference client to a border router on: October 07, 2013, 04:46:02 PM
If Gavin was interested in (/thought his time was best spent on) those other things he would spent them on them. You can't dictate how Gavin spends his time by creating a fork.

As an aside, though the code ends up in the same binary, as I recall the payment protocol didn't touch consensus mechanism stuff, it was largely self contained and nowhere near the core stuff. Increased modularity is a long term goal to making review easier, though it's currently come a long way from the original code that freely intermixed the GUI wallet stuff with the consensus code.
3710  Bitcoin / Development & Technical Discussion / Re: Instant confirmation, call it "confirmed-by-owner" on: October 07, 2013, 04:43:52 PM
Suppose you never made it to starbucks and want your money back - you hop onto https://starbucks.com/refund, give them your private key and change address, and they send you back your coins.
Sorry, starbucks was run by Bernie Madoff and won't return your money. Basically under your scheme: Once you've given them the secret key for the refund they can say "HA HA, mine now!", and even without you giving them the key they can freely extort you ("Give us the key, or we're not talking. Maybe if you give it to us we'll give you back 10%") with no finical loss.

Quote
I think the cons in this situation are better than the escrow/timelocked version, since you can get your coins back immediately (as long as the vendor is cooperating).
The escrow/timelock version can give you your coins back immediately if the vendor is cooperating too. The timelocked refund is just there to prevent extortion like "No, sorry, I won't refund your coins unless you give me at least half." or to deal with the vendor getting hit by a bus.

Certainly there are cases where you reasonably can trust the vendor, but in most of those you can probably go all the way to a premature payment and dispense with the split key stuff.
3711  Bitcoin / Hardware / Re: KNC, 100% of their hashing is currently going into their own pocket. on: October 07, 2013, 04:29:06 PM
Locking thread because it's both run its course and they've actually got hardware in people's hands now!
3712  Bitcoin / Development & Technical Discussion / Re: strip the reference client to a border router on: October 07, 2013, 07:03:20 AM
Wouldn't this increase the amount of software which must be reviewed, tested, patched, and otherwise maintained? Is this just for the sake of removing parts which are largely inactive and harmless when not used?

I often don't understand proposals stated in terms of mechanisms rather than goals. Perhaps the benefits are apparent to those who would want it, but for my sake what benefit(s) would this serve which would justify the costs?

There is already have code to turn off the wallet. If there is a real application for turning off other things I don't see a reason that a fork would be required.
3713  Bitcoin / Bitcoin Technical Support / Re: Confused about blockchain transactions on: October 03, 2013, 12:21:28 AM
https://en.bitcoin.it/wiki/Change
3714  Bitcoin / Development & Technical Discussion / Re: bitcoins with homomorphic value (validatable but encrypted) on: October 02, 2013, 10:57:57 PM
Correct me if I am wrong here, please.
You are wrong. But you're asking in the wrong place— go see the nice article on wikipedia.
3715  Bitcoin / Bitcoin Discussion / Re: SilkRoad domain Seized? on: October 02, 2013, 10:03:36 PM
Page 10 of the complaint claims the site had a section listing hitmen. Is this true??  I thought the site refused to list guns and such... just consensual transactions. Whats the scoop?
3716  Bitcoin / Development & Technical Discussion / Re: NSA and ECC on: October 02, 2013, 09:03:54 PM
...

1 : 29896722852569046015560700294576055776214335159245303116488692907525646231534  is a point on our curve, as is
2 : 46580984542418694471253469931035885126779956971428003686700937153791839982430

and so on. The first missing x, other than zero obviously, is 5.
3717  Bitcoin / Hardware / Re: KNC, 100% of their hashing is currently going into their own pocket. on: October 02, 2013, 03:40:03 PM
I would not buy a miner that hadn't proven itself mining on the real net. Testnet is not the same.
Mining testnet is a very similar workload to mining shares on a pool. If you were saying you wanted to see a solved high difficulty block— that would be another matter. A technically superior test would be to mine recently completed mainnet blocks to verify that the device would actually submit solutions.  As it'll be quite awesome when, intentionally or otherwise, some mining asic has a "bug" that causes it to lose some percentage of its full solutions but not its shares... widespread deployment of such a device would probably put every pool out of business in a few days. Tongue

[Aside: I'm only bothering to reply to this thread because it's currently on top]
3718  Bitcoin / Bitcoin Technical Support / Re: building bitcoin on unix is now a pain thanks to bitcoin devs on: October 02, 2013, 12:15:52 AM
the build didn't fail genius, it was just a pain in the ass. the old way was simple and showed alot of helpful debugging information.
you're not understanding though, this new build process results in a non executable binary on my os.
3719  Bitcoin / Bitcoin Technical Support / Re: building bitcoin on unix is now a pain thanks to bitcoin devs on: October 01, 2013, 11:21:12 PM
I am very displeased with the change in compiling procedures. where might i find the previous version with normal compiling procedures(make and qmake) thanks.
How about _any_ released version, including the most current one? (though the procedure you gave there is needlessly complicated in any case)

Though I wonder why you are displeased  with Bitcoin being build-able in the same way as virtually every other open source unix package for the past twenty years:

Code:
./configure && make

and instead prefer your six step process (which doesn't even suffice for building on many systems).
3720  Bitcoin / Bitcoin Discussion / Re: Bitcoin Long-term Viability/Improvement Discussion on: October 01, 2013, 10:01:20 PM
These are all really basic questions which have been asked and answered here many times before... some of them have their own sections in the original Bitcoin whitepaper. Please search for a bit before creating a new thread asking the same things over again.
Pages: « 1 ... 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 [186] 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 ... 288 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!