Bitcoin for the befuddled unknown

249 148 0
Bitcoin for the befuddled   unknown

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

BITCOIN FOR THE BEFUDDLED by Conrad Barski and Chris Wilmer San Francisco BITCOIN FOR THE BEFUDDLED Copyright © 2015 by Conrad Barski and Chris Wilmer All rights reserved No part of this work may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or by any information storage or retrieval system, without the prior written permission of the copyright owner and the publisher Printed on demand in USA ISBN-10: 1-59327-573-0 ISBN-13: 978-1-59327-573-0 Publisher: William Pollock Production Editor: Serena Yang Cover Illustration: Conrad Barski Interior Design: Octopod Studios Developmental Editor: Tyler Ortman Technical Reviewer: Patrick Fuller Copyeditor: Anne Marie Walker Compositor: Alison Law Proofreader: Paula L Fleming Indexer: Nancy Guenther For information on distribution, translations, or bulk sales, please contact No Starch Press, Inc directly: No Starch Press, Inc 245 8th Street, San Francisco, CA 94103 phone: 415.863.9900; info@nostarch.com www.nostarch.com Library of Congress Control Number: 2014951031 No Starch Press and the No Starch Press logo are registered trademarks of No Starch Press, Inc Other product and company names mentioned herein may be the trademarks of their respective owners Rather than use a trademark symbol with every occurrence of a trademarked name, we are using the names only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark The information in this book is distributed on an “As Is” basis, without warranty While every precaution has been taken in the preparation of this work, neither the authors nor No Starch Press, Inc shall have any liability to any person or entity with respect to any loss or damage caused or alleged to be caused directly or indirectly by the information contained in it Nothing in this book is intended to offer legal or financial advice, and neither the authors nor the publisher are engaged in the business of rendering such advice If you’re looking for legal or financial advice, please run to the nearest qualified professional and don’t ask us Neither the authors nor the publisher will be liable for any loss or risk that you incur by using the information contained in this book About the Authors Conrad Barski has an M.D from the University of Miami and nearly 20 years of programming experience Barski is a cartoonist, programmer, and the author of Land of Lisp (No Starch Press) He’s been using Bitcoin since 2011 Chris Wilmer holds a Ph.D in chemical engineering from Northwestern University and is a professor at the University of Pittsburgh Wilmer’s first purchase with Bitcoin was a bag of honey caramels from a farm in Utah They were delicious BRIEF CONTENTS Preface Chapter 1: What Is Bitcoin? Chapter 2: Bitcoin Basics Chapter 3: Storing Your Bitcoins Safely, Securely, and Conveniently Chapter 4: Buying Bitcoins Chapter 5: Lost at Sea: A Cryptographic Adventure Chapter 6: Why Bitcoin Is a Big Deal Chapter 7: The Cryptography Behind Bitcoin Chapter 8: Bitcoin Mining Chapter 8.5: The Strange World of Altcoins Chapter 9: Understanding the Different Types of Bitcoin Wallets Chapter 10: Bitcoin 2030 Appendix A: Hello Money! A Simple JavaScript Program Appendix B: Bitcoin Programming with BitcoinJ Index CONTENTS IN DETAIL PREFACE Acknowledgments Chapter 1: WHAT IS BITCOIN? Why Bitcoin Now? The Benefits of Using Bitcoin The Complexity and Confusion of Bitcoin What’s in This Book? Chapter 2: BITCOIN BASICS How Bitcoin Works in Simple Terms Bitcoin Units The Bitcoin Address The Private Key The Bitcoin Wallet Creating Your First Bitcoin Wallet with Electrum Acquiring Bitcoins in Your Wallet Spending Bitcoins with Your Wallet Bitcoin Addresses Generated by Your Bitcoin Wallet Program The Blockchain The Blockchain Lottery Blockchain Forking Transaction Confirmations, Double Spending, and Irreversibility Mining Bitcoins The Complexity of the Bitcoin System Chapter 3: STORING YOUR BITCOINS SAFELY, SECURELY, AND CONVENIENTLY Storing Your Private Key(s) Hot Storage vs Cold Storage Personal vs Hosted Wallets Safety, Security, and Convenience Storing Small Amounts of Bitcoins Online Hosted Wallet Services Online Personal Wallet Services Personal Hot Wallet Storing Large Amounts of Bitcoins Paper Wallets Encrypted Paper Wallets Offline Transaction Signing Fragmented Private Keys and Multi-Signature Addresses Special Mention: The Bitcoin Hardware Wallet Special Mention: The Bitcoin Brain Wallet Choosing the Storage Method That’s Right for You Chapter 4: BUYING BITCOINS Why Not Just Mine Bitcoins? Ways to Buy Bitcoins Buying Bitcoins the Easy Way Authentication Factors The Hassle of Converting Dollars (or Other Currencies) into Bitcoins Buying Bitcoins with Coinbase Buying Bitcoins the Efficient Way Buying Bitcoins from a Currency Exchange Buying Bitcoins the Fun and Futuristic Way Step 1: Finding Someone to Buy From Step 2: Deciding on a Meeting Place Step 3: Handing Over the Money and Getting Your Bitcoins Satoshi Square Still Don’t See a Buying Option That Works for You? Chapter 5: LOST AT SEA: A CRYPTOGRAPHIC ADVENTURE Chapter 6: WHY BITCOIN IS A BIG DEAL A Brief History of Digital Currencies The Dawn of Bitcoin Bitcoin’s First Four Years Bitcoin’s Early Impact The Future Potential of Bitcoin What Are the Existential Risks to Bitcoin? What Role Might Bitcoin Play in the Future? The Dangers of Decentralized Digital Money Chapter 7: The Cryptography Behind Bitcoin A Brief Cryptography Overview One-Way Functions Cryptographic Hash Functions Verify Information Public Key Cryptography Digital Signatures Using Digital Signatures Why Bitcoin Needs Cryptography Authorizing Transactions with Digital Signatures Verifying the Validity of the Transaction History Proof-of-Work in Bitcoin Mining Extra Protection for Bitcoin Private Keys Cryptographic Methods Used in Bitcoin Cryptographic Hash Functions: SHA256 and RIPEMD160 Crowley and the Unfortunate Jelly-Filled Donut Incident Moving Around on a Line Elliptic Curve Digital Signature Algorithm (ECDSA) Signing a Bitcoin Transaction Using ECDSA The Security of Bitcoin’s Cryptography Pseudocode for Elliptic Point Summation and Point Multiplication Chapter 8: BITCOIN MINING Why Is Bitcoin Mining Needed? A Parable of Two Generals Applying the Parable to Bitcoin Preventing Attacks with Mining Distributing New Currency with Mining How Does Bitcoin Mining Work? How Miners Solve a Block Anatomy of a Block Pooled Mining Bitcoin Mining for Profit Theoretical Hash Rate Limits Decentralization in Bitcoin Mining 8.5 THE STRANGE WORLD OF ALTCOINS Chapter 9: UNDERSTANDING THE DIFFERENT TYPES OF BITCOIN WALLETS Wallet Software Design Fundamentals Offline vs Online Transaction Signing Random Key Generation vs Deterministic Key Generation (vs Single Key Generation) Full vs Simplified Payment Verification Other Common (and Not So Common) Bitcoin Wallet Features Future Wallets Which Wallet Is Right for You? Additional Wallet Considerations Chapter 10: BITCOIN 2030 What Will a Bitcoin Be Worth in 2030? Bitcoin Mining in 2030 A Day in the Life of a Bitcoiner in 2030 The Bitcoin End Game Appendix A: HELLO MONEY! A SIMPLE JAVASCRIPT PROGRAM The Meaning of “Easy” Three Ways to Write Bitcoin Software General Security Notes on Bitcoin Programming Some Upbeat Notes on Bitcoin Security Writing Your First Bitcoin Program in JavaScript Why Use JavaScript? Bitcoin Core vs Bitcoind Preparing Your Machine for JavaScript Bitcoin Programming Installing Node.js Installing node-bitcoin Starting Bitcoin Core For Mac Hackers For Linux Folks Hello Money! Part 1: Initializing the Connection with Bitcoin Core Part 2: The Main Loop The Bitcoin Core JSON-RPC API Running the Hello Money! App Limitations of Writing Bitcoin Programs That Use JSON-RPC Appendix B: BITCOIN PROGRAMMING WITH BITCOINJ The Best Programming Language for Connecting to the Bitcoin Network Installing Java, Maven, and the BitcoinJ Library Step 1: Installing Java Step 2: Installing Maven Step 3: Installing Git Step 4: Installing BitcoinJ Creating a Starter Project for hello-money Writing the Code for hello-money Declarations at the Top of the Program Initializing Our Java Objects Connecting to the Bitcoin Network Listening for New Money Running and Testing the hello-money Java Program Bye-Bye Money Importing a Private Key Sending the Money Ensuring the Money Transmission Running bye-bye-money Gotchas When Using Wallets in BitcoinJ Conclusion INDEX function of, 40 loss of, 37 Peercoin, 125 PeerGroup object, 233–234, 240 peer-to-peer architecture, 119 pegging, 120 pending transaction, 18 Perrig, Adrian, 110–111 personal wallets vs hosted wallet, 34–35 hot storage, 37–38 online services, 37 person-to-person bitcoin purchases, 52, 67–71 point multiplication, 150, 158–159 point-of-sale terminals, watch-only wallet for, 187 polling, Bitcoin programming, 223 pom.xml file, 229, 236–237 pooled mining, 175–176 portability, of currency, 117 Preneel, Bart, 140 price discovery process, 120 privacy, 11n and criminals, 124 multiple addresses and, 12 private currencies, private key, 11–12, 150 compromise of, 41 extra protection for, 139 fragmented, and multi-signature addresses, 41–42 generating, 37 importing, 237 master, 188 memorizing, 45 parable on, 141–145 reversing function of, 136 security for, 39, 186 signing transaction with, 156 SPV wallets vs full wallets, 194 storing, 33 profit, mining for, 176–177 programming languages, for Bitcoin network connection, 225–226 proof-of-stake, 125 proof-of-work, 125, 166 and blockchain, 165 in mining, 138–139 protecting bitcoins, 61 See also security protocol, for Bitcoin, 112 public information, transactions as, 11 public key, 150 encryption, 91 master, 188 parable of, 141–145 reversing function of, 136 sharing, 156 public key cryptography, 133–135 public/private key pair, creating with ECDSA, 154 pushing, Bitcoin programming, 223 Python, 226 Q quick response (QR) codes, for Bitcoin address, 10 R Race Integrity Primitives Evaluation Message Digest (RIPEMD), 139–141, 188 radical decentralization, 126 random key generation, 187–190 randomness, for generating Bitcoin address, 39 relay node, 170 RelayRides, 67 remote servers, Electrum connection to, 15 retailers, acceptance of Bitcoin, 116 reversible transactions, 55–56 rewards, 170 from Bitcoin-mining lottery, 22 for transaction processing, 26 RIPEMD (Race Integrity Primitives Evaluation Message Digest), 139–141, 188 risks, to Bitcoin, 117–121 Rivest, Ron, 133–134 rounding errors, 235 and cryptography, 151 RSA encryption, 133–134, 137 Ruby, 226 S safety, of storage, 35 satoshi (bitcoin unit), SatoshiLabs, 43 Satoshi Square, 71 savings, Bitcoin for, 121–122 scarcity, of currency, 118 Sean’s Outpost, 18 Secure Hash Algorithm (SHA), 139–141, 188 ASIC optimization to calculate, 174 security, 14, 118–119 of Bitcoin exchanges, 63 confidence in, 216–217 double hash scheme and, 156 SPV wallets vs full wallets, 193–194 of storage, 35 seed, in Electrum, 14, 15 sending money from Bitcoin address, 236–239 code for, 238 SendRequest object, 238 settlement period, 55, 56 SHA (Secure Hash Algorithm), 139–141, 188 ASIC optimization to calculate, 174 Shamir, Adi, 133–134 Shamir’s Secret Sharing method, 42 shares, of mining reward, 176 side chains, 121 Silk Road website, 124 simplified payment verification (SPV), 191, 233 vs full wallets, 193–195 single key generation wallet programs, 188 smartphones private keys on, 44 wallets on, 192 software as a service, 34 speed of payments, SPV wallets vs full wallets, 193 spending bitcoins, 17–19 SPV (simplified payment verification), 191, 233 vs full wallets, 193–195 SPVBlockStore object, 232, 233 stateless currencies, storage, Bitcoin, 31–47 choosing method, 46–47 hot vs cold, 33–34 of large amounts of bitcoins, 38–42 private key, 33 safety, security, and convenience, 35 of small amounts of bitcoins, 35–38 SPV wallets vs full wallets, 194 Trezor, 43–45 summation, pseudocode for, elliptic curve cryptography, 158–159 symmetric key cryptography, 133 synchronization, SPV wallets vs full wallets, 193 T Takhteyev, Yuri, 112n tangent to curve, elliptic curve cryptography, 150 thick wallets, 191 thin wallets, 192 third-party service provider, as bank, 33 timestamp, for block, 172 Tor, 127 trade volume, of exchange, 63 transaction confirmation, 25 transaction fees See fees transaction history, verifying validity, 138 transactions authorizing with digital signatures, 137–138 full vs simplified payment verification, 191–195 information in, 138 off-chain, 201 ordering, 166 potential, in 2030, 201 signing with ECDSA, 153–156 offline, 40–41 offline vs online, 186–187 with private key, 156 transferring dollars to exchange account, 66 Trezor, 43–45 true blockchain, 24 true ledger, 166 trust, 110, 111 two-factor authentication, 36, 53–54 setting up in Coinbase, 58–59 U unit of account, 123 units, Bitcoin, unspent output, 196 V valid transaction, 191 vendor APIs, 214–215 Visa, 112 volatility, of Bitcoin, 120 W wallet file, 13, 33, 186 Wallet.loadFromFile() function, 240 walletNotify feature, 223 wallets, 12–19, 28–29, 185–198 acquiring bitcoins, 16 BitcoinJ issues, 239–240 brain, 45–46 creating empty, 232 future changes, 197 generating, 38–42 getting bitcoins into, 17 hardware, 42–43 online hosted services, 36 paper, 39 personal vs hosted, 34–35 running on autopilot, 214 selecting, 197 software design fundamentals, 186–195 features, 195–196 offline vs online transaction signing, 186–187 random vs deterministic key generation, 187–190 transferring coins from Coinbase wallet to, 61 virus threat to, 216 watch-only See watch-only wallet Wallet.saveToFile() function, 240 watch-only wallet, 186 combining deterministic key generation with, 189 math supporting, 189–190 full vs SPV, 191–195 for point-of-sale terminals, 187 Windows development environment, JavaScript on, 218–219 X XBT, Z zero point, elliptic curve cryptography, 152–153 Footnotes Chapter 1: What is Bitcoin? Similar to how renminbi is name of the Chinese currency, but the yuan is the basic unit For example, in the mid-1800s, banks, companies, churches, and individuals issued hundreds of private currencies in the United States Eventually, most of these private currencies lost all their value Between 1921 and 1924, the value of the German mark fell by a factor of more than 10 trillion due to overprinting by the government In 2008, the government of Zimbabwe printed so much of its currency that in a single year, a loaf of bread increased from $1 to $100 billion In both cases, any savings that people had in the form of national currency were completely destroyed To say that something is decentralized is more or less equivalent to saying that it is run by a group of strangers who don’t necessarily trust each other Chapter 2: Bitcoin Basics The standard for currency codes (ISO 4217) uses the first character in the code to refer to the country issuing the currency However, since Bitcoin is a nongovernmental currency, the standard suggests that its name should start with X, as is the case with gold or silver, whose codes are XAU and XAG, respectively The QR code is just one of many ways to easily share a Bitcoin address Another method is to use a first bits scheme in which you share only the first few characters of your Bitcoin address, which has been abbreviated by a Bitcoin address–shortening services (similar to a URL-shortening service) Starting with version 0.9 and later, Bitcoin also supports human-readable Bitcoin addresses that replace the traditional ones—much as a website address such as toys.com replaces the less user-friendly IP address of 123.100.101.111 In general, maintaining complete privacy while doing online transactions is very difficult, with or without Bitcoin Although the use of Bitcoin helps protect privacy when compared to using a credit card, it is not a complete solution Other tools and precautions might need to be used as well (for example, using the online privacy-protecting TOR browser) Although every private key is associated with a single Bitcoin address, the reverse is not always true A Bitcoin address can require multiple private keys to unlock the bitcoins at that address (in this case, the Bitcoin address will begin with the number instead of the usual 1) However, this advanced feature isn’t used for most common transactions Also called Bitcoin wallet clients Odds of a trillion times more likely are still a dramatic understatement The possible value of Bitcoin addresses is 2160 (~1048), and the number of grains of sand on Earth is approximately 1019 Strictly speaking, this transaction fee is voluntary, but miners may ignore transactions that have no attached fees Chapter 3: Storing your Bitcoins Safely, Securely, and Conveniently Bitcoin wallets are perfect thermal insulators Some services now offer insured deposits, which may reassure some users in countries with robust legal systems Some Bitcoin companies have a tendency to name themselves using technical jargon from the Bitcoin lexicon, which can cause confusion The company Blockchain.info and the public ledger known as the blockchain are completely different entities Pun intended Depending on how the online personal wallet service is implemented, passwords may be recoverable, but some other critical piece of information necessary for spending bitcoins would not be If the company can recover all of the information necessary for you to spend your bitcoins, it is in fact operating as a hosted wallet, and you are entrusting that company with your money Chapter 4: Buying Bitcoins Of course they might be able to seize another ten thousand dollars you own from another source, but that would not constitute a “reversal” of the original transaction for the sake of this discussion Chapter 6: Why Bitcoin is a Big Deal This work is available at http://users.ece.cmu.edu/~adrian/projects/memoire1/memoire1.html Yuri Takhteyev, a researcher at the University of Toronto, compared Bitcoin to hockey: “Hockey is just a collection of rules that describe a particular sport Nobody owns the rules of hockey, and if anybody wants to change the rules, they can so as long as they don’t mind playing by themselves It is possible for the rules of hockey to change, but only if everyone agrees to the new rules Bitcoin is the same way.” (http://www.research.utoronto.ca/what-is-bitcoin/) We actually don’t know whether Satoshi Nakamoto is a man, a woman, or a group of people Hal Finney developed a reusable proof-of-work system that overlaps significantly with Bitcoin’s proof-of-work used in mining On March 6, 2014, a user account belonging to Satoshi Nakamoto posted on the P2Pfoundation forum to clarify that he was not Dorian Satoshi Nakamoto, a man who at the time was being harassed by journalists because they mistakenly believed he was the inventor of Bitcoin These are only rough estimates; the computing power of supercomputers and such projects is often measured in the number of floating-point operations per second (FLOPs) Bitcoin doesn’t use floating-point operations but rather purely integer-based operations, so assumptions need to be made about how to compare these two types of numeric calculation Here we are using the narrow money stock, also called the M1, of each country’s national currency as a comparison As claimed on the BitPay home page in September 2014 As claimed on the CoinMap home page in September 2014 10 As indicated by a search of the Google Scholar article index in September 2014 11 Paul Krugman, “The Antisocial Network,” New York Times, April 14, 2013, http://www.nytimes.com/2013/04/15/opinion/krugman-the-antisocial-network.html 12 http://www.federalreserve.gov/faqs/how-long-is-the-life-span-of-us-paper-money.htm 13 Named after John Maynard Keynes, the economist who is most strongly identified with this particular approach to monetary policy 14 One well-articulated version of this argument is given by Paul Krugman in the article “Bitcoin Is Evil,” New York Times, December 28, 2013, http://krugman.blogs.nytimes.com/2013/12/28/bitcoin-is-evil/ 15 http://ethereum.org/ 16 http://bitmessage.org/ Chapter 7: The Cryptography Behind Bitcoin This term is used in addition to the many others for Bitcoin, such as digital currency, math-based currency, and among those who don’t think bitcoins are real money, virtual currency An integer is a number that can be written without a fractional or decimal component (e.g., −4, 2, or 17 but not 4.23 or 1.5) In modular arithmetic, whenever a number becomes too large, it “wraps around” like the hour hand on a clock once it moves past 12; instead of pointing to 13, it starts over and points to However, whereas clocks start over at the number one, the common convention among mathematicians is to start over at So + = 9, but + (mod 7) = because after reaching 7, the next three numbers are 0, 1, and Ron Rivest, Adi Shamir, and Leonard Adleman, “A Method for Obtaining Digital Signatures and Public-Key Cryptosystems,” Communications of the ACM 21, no (1978): 120–126 Hans Dobbertin, Antoon Bosselaers, and Bart Preneel, “RIPEMD-160, a strengthened version of RIPEMD,” in Fast Software Encryption, ed Dieter Gollmann (Berlin: Springer-Verlag, 1996), 71– 82 Exact vertical lines are considered to hit a third point at y = infinity Points where the line is tangent to the curve count as two intersection points (even though it looks like only one in Figure 76), so if a tangent line touches the curve only one more time it is still counted as “intersecting three times.” If are you trying to follow along but don’t know how to perform a point multiplication calculation, see the pseudocode at the end of this chapter In addition to hashing the public key with SHA256 and RIPEMD160, some additional steps are involved (like appending the Bitcoin version number) to the hash to generate the actual Bitcoin address However, the cryptographically significant step is the SHA256/RIPEMD160 double hash Rolf Landauer, “Irreversibility and heat generation in the computing process,” IBM Journal of Research and Development (1961): 183–191 Chapter 8: Bitcoin Mining For an early formulation of such a proof, see Jim Gray’s, “Notes on Data Base Operating Systems,” lecture notes in Operating Systems, An Advanced Course (London: Springer-Verlag, 1978) A formulation of this puzzle by Satoshi is available at https://bitcointalk.org/oldSiteFiles/byzantine.html The number of bitcoins mined in each block is cut in half exactly when the blockchain grows by 210,000 blocks, which takes approximately four years The maximum limit has generally been increased over time as concerns about memory constraints have lessened But there will always be a maximum limit As mentioned before, two or more miners could possibly add a new block at the same time This causes a split in the blockchain but is resolved by waiting to see which branch grows by yet another block first A double SHA256 hash is the SHA256 hash of a SHA256 hash If y = SHA256(x), then SHA256(y) is the double hash The use of double SHA256 hashes was proposed by Ferguson and Schneier in their book Practical Cryptography as a way of preventing a certain kind of cryptographic attack called length-extension Nonce is short for “a number used once.” Because a nonce is only a 32-bit number, it is actually possible to exhaust every value without a solution If every nonce is tried and the block is still not solved, an extraNonce field, hidden in the list of transactions, is incremented The odds of finding a one-in-a-billion hash after trying billion times is ~63.2 percent In precise mathematical terms, the probability is − 1/e, where e is the irrational mathematical constant, approximately equal to 2.718 10 Strictly speaking, the number of individuals involved in mining is irrelevant, of course; only the amount of computational power applied to mining matters 11 At some rate varying from fast to unbelievably fast to slingshot-around-the-sun-to-go-back-intime-and-save-the-whales fast 12 Well, let’s just assume that’s the case for now 13 Moore’s law is an observation by Gordon E Moore, cofounder of Intel, that the number of transistors on computer chips doubles approximately every two years This has held true for over 40 years, largely because feature sizes on computer chips have continued to get smaller 14 In this case, the limit was imposed by trusted developers of the core Bitcoin software The protocols encoded in this core software are typically supported by a majority of miners and therefore usually determine the properties of the longest blockchain on the network Chapter 9: Understanding the Different Types of Bitcoin Wallets An important exception is if the user imports a randomly generated private key (perhaps from a paper wallet) into his deterministically generated Bitcoin wallet In this case, a new backup needs to be created because the imported key cannot be derived from the master private key The 12-word mnemonic is just one of an infinite variety of ways to encode a 256-bit integer You can encode an integer in binary, hex, ASCII letters, lines of poetry, or ice cream toppings More details on Merkle trees can be found in Satoshi’s original white paper Generating and importing paper wallets is the same as generating and importing private keys, and some Bitcoin wallets use one phrase or the other You think that sounds unlikely? Just wait! Chapter 10: Bitcoin 2030 Note that we are not including micropayments, which Bitcoin makes possible and can number in the thousands per user per day In this scenario, we are just referring to buying-things-that-cost-adollar-or-more transactions There remains some dispute as to how much credit Gottfried Leibniz deserves as a coinventor of calculus However, it may not survive as “Bitcoin.” It is possible that the blockchain technology could be adopted by other cryptocurrencies in the future, and those currencies could overtake Bitcoin in popularity Appendix A: Hello Money! A Simple Javascript Program Data Universal Numbering System, a government-assigned code that is unique to every business in most of the world and identifies that business for financial purposes https://en.bitcoin.it/wiki/How_to_accept_Bitcoin,_for_small_businesses#Merchant_Services Black hat hackers, as opposed to white hat hackers, are hackers who have no moral qualms about profiting from and harming their targets If you don’t understand what a man-in-the-middle attack is, first, be aware that almost anything you on the Internet is at risk of this assault, especially if you’re connecting from a public Internet connection you don’t fully control Second, stop reading this chapter now and immediately read the Wikipedia page on this subject at https://en.wikipedia.org/wiki/Man-in-the-middle_attack Appendix B: Bitcoin Programming with Bitcoinj The C++ reference implementation is available at https://github.com/bitcoin/bitcoin/ BitcoinJ is available at http://bitcoinj.github.io/ https://github.com/piotrnar/gocoin/ https://github.com/conformal/btcd/ UPDATES Visit http://www.nostarch.com/bitcoin for updates, errata, and other information More no-nonsense books from NO STARCH PRESS LAND OF LISP Learn to Program in Lisp, One Game at a Time! by CONRAD BARSKI, M.D OCTOBER 2010, 504 PP , $49.95 ISBN 978-1-59327-281-4 PYTHON FOR KIDS A Playful Introduction to Programming by JASON R BRIGGS DECEMBER 2012, 344 PP , $34.95 978-1-59327-407-8 full color ISBN JAVASCRIPT FOR KIDS A Playful Introduction to Programming by NICK MORGAN DECEMBER 2014, 348 PP , $34.95 ISBN 978-1-59327-408-5 full color HACKING, 2ND EDITION The Art of Exploitation by JON ERICKSON FEBRUARY 2008, 488 PP W/CD, $49.95 ISBN 978-1-59327-144-2 THE PRACTICE OF NETWORK SECURITY MONITORING Understanding Incident Detection and Response by RICHARD BEJTLICH JULY 2013, 376 PP , $49.95 ISBN 978-1-59327-509-9 PENETRATION TESTING A Hands-On Introduction to Hacking by GEORGIA WEIDMAN JUNE 2014, 528 PP , $49.95 ISBN 978-1-59327-564-8 PHONE: 800.420.7240 or 415.863.9900 EMAIL: sales@nostarch.com WEB: www.nostarch.com ... node -bitcoin Starting Bitcoin Core For Mac Hackers For Linux Folks Hello Money! Part 1: Initializing the Connection with Bitcoin Core Part 2: The Main Loop The Bitcoin Core JSON-RPC API Running the. .. Currencies The Dawn of Bitcoin Bitcoin’s First Four Years Bitcoin s Early Impact The Future Potential of Bitcoin What Are the Existential Risks to Bitcoin? What Role Might Bitcoin Play in the Future? The. .. prior written permission of the copyright owner and the publisher Printed on demand in USA ISBN-10: 1-5 932 7-5 7 3-0 ISBN-13: 97 8-1 -5 932 7-5 7 3-0 Publisher: William Pollock Production Editor: Serena

Ngày đăng: 13/12/2018, 16:19

Mục lục

  • BITCOIN FOR THE BEFUDDLED

    • BRIEF CONTENTS

    • CONTENTS IN DETAIL

    • PREFACE

    • Acknowledgments

    • 1

      • Why Bitcoin Now?

      • The Benefits of Using Bitcoin

      • The Complexity and Confusion of Bitcoin

      • What’s in This Book?

      • 2

        • How Bitcoin Works in Simple Terms

        • Bitcoin Units

        • The Bitcoin Address

        • The Private Key

        • The Bitcoin Wallet

          • Creating Your First Bitcoin Wallet with Electrum

          • Acquiring Bitcoins in Your Wallet

          • Spending Bitcoins with Your Wallet

          • Bitcoin Addresses Generated by Your Bitcoin Wallet Program

          • The Blockchain

            • The Blockchain Lottery

            • Blockchain Forking

            • Transaction Confirmations, Double Spending, and Irreversibility

            • Mining Bitcoins

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan