Low-level Bitcoin
curiosity-driven.org
Low-level Bitcoin
1–10 of 28 posts
Re: Low-level Bitcoin
#2* probably never, but worth mentioning
Re: Low-level Bitcoin
#3The instructions BOOLAND and BOOLOR don't interpret the stack values the same way IF, VERIFY etc do. They decode the top stack values as integers and compare against zero, thus they have to fail when the top stack item size is greater than 4 bytes.
Edit: littleEndian.decode also doesn't seem to respect the size limits
Edit2: .. or signed integers for that matter. So while this is a very cool basic concept, it's not a complete implementation.
The reference client provides test suites
https://github.com/bitcoin/bitcoin/blob/master/src/test/data...
https://github.com/bitcoin/bitcoin/blob/master/src/test/data...
Re: Low-level Bitcoin
#4Re: Low-level Bitcoin
#5This article had me wondering what will happen when people start storing copyrighted data (or worse, pedopornographic images) inside the blockchain.
Also related: http://en.wikipedia.org/wiki/Illegal_number
Re: Low-level Bitcoin
#6Possible bug: The instructions BOOLAND and BOOLOR don't interpret the stack values the same way IF, VERIFY etc do. They decode the top stack values as integers and compare against zero, thus they have to fail when the top stack item size is greater than 4 bytes. Edit: littleEndian.decode also doesn't seem to respect the size limits Edit2: .. or signed integers for that matter. So while this is a very cool basic conce…
But it was not clear from this text whether it's a complete implementation or not so it looks like a bug. I've added the annotation [1] and will update the interpreter in the future.
Of course if one wanted to use Bitcoin in real projects I'd rather recommend Bitcoin.js [2] but that's another topic.
Thanks for comment!
[0]: https://curiosity-driven.org/bitcoin-contracts
[1]: https://curiosity-driven.org/low-level-bitcoin#operators
Re: Low-level Bitcoin
#7This article had me wondering what will happen when people start storing copyrighted data (or worse, pedopornographic images) inside the blockchain.
Re: Low-level Bitcoin
#8A little note about the "make a privkey" section of the signature example; it can sometimes* make invalid privkeys that are off the end of the EC curve. Only integers between 0x1 and 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 are valid in our particular case. Super unlikely to ever get a sha256 hash that matches the invalid portion, but it's worthwhile to point out. * probably never, but worth…
Re: Low-level Bitcoin
#9This article had me wondering what will happen when people start storing copyrighted data (or worse, pedopornographic images) inside the blockchain.
They already do that: http://www.righto.com/2014/02/ascii-bernanke-wikileaks-photo... Also related: http://en.wikipedia.org/wiki/Illegal_number
Re: Low-level Bitcoin
#10Earlier quoted context omitted.
They already do that: http://www.righto.com/2014/02/ascii-bernanke-wikileaks-photo... Also related: http://en.wikipedia.org/wiki/Illegal_number
So what happens if someone puts CP into the block chain and publishes the instructions to retrieve after two months?
[0]: https://code.google.com/p/bitcoinj/wiki/FullVerification