Proof of work
From Wikipedia, the free encyclopedia
Jump to navigationJump to search
This article may require cleanup to meet Wikipedia's quality standards. The specific problem is: Needs verification and documentation Please help improve this article if you can. (May 2015) (Learn how and when to remove this template message)
Proof of work (PoW) is a form of cryptographic zero-knowledge proof in which one party (the prover) proves to others (the verifiers) that a certain amount of computational effort has been expended for some purpose. Verifiers can subsequently confirm this expenditure with minimal effort on their part. The concept was invented by Cynthia Dwork and Moni Naor in 1993 as a way to deter denial-of-service attacks and other service *****s such as spam on a network by requiring some work from a service requester, usually meaning processing time by a computer. The term "proof of work" was first coined and formalized in a 1999 paper by Markus Jakobsson and Ari Juels. Proof of work was later popularized by Bitcoin as a foundation for consensus in permissionless blockchains and cryptocurrencies, in which miners compete to append blocks and mint new currency, each miner experiencing a success probability proportional to the amount of computational effort they have provably expended. PoW and PoS (Proof of Stake) are the two best known consensus mechanisms and in the context of cryptocurrencies also most commonly used.
A key feature of proof-of-work schemes is their asymmetry: the work must be moderately hard (yet feasible) on the prover or requester side but easy to check for the verifier or service provider. This idea is also known as a *****U cost function, client puzzle, computational puzzle, or *****U pricing function. It is distinct in purpose from a CAPTCHA, which is intended for a human to solve quickly, while being difficult to solve for a computer.
Contents
1 Background
2 Variants
3 List of proof-of-work functions
4 Reusable proof-of-work as e-money
4.1 Bitcoin-type proof of work
4.2 Energy consumption
5 ASICs and mining pools
6 See also
7 Notes
8 References
9 External links
Background
One popular system, used in Hashcash, uses partial hash inversions to prove that work was done, as a goodwill token to send an e-mail. For instance, the following header represents about 252 hash computations to send a message to [email protected] on January 19, 2038:
X-Hashcash: 1:52:380119:[email protected]:::9B760005E92F0DAE
It is verified with a single computation by checking that the SHA-1 hash of the stamp (omit the header name X-Hashcash: including the colon and any amount of whitespace following it up to the digit '1') begins with 52 binary zeros, that is 13 hexadecimal zeros:
0000000000000756af69e2ffbdb930261873cd71
Whether PoW systems can actually solve a particular denial-of-service issue such as the spam problem is subject to debate; the system must make sending spam emails obtrusively unproductive for the spammer, but should also not prevent legitimate users from sending their messages. In other words, a genuine user should not encounter any difficulties when sending an email, but an email spammer would have to expend a considerable amount of computing power to send out many emails at once. Proof-of-work systems are being used as a primitive by other more complex cryptographic systems such as bitcoin which uses a system similar to Hashcash.
Variants
There are two classes of proof-of-work protocols.
Challenge–response protocols assume a direct interactive link between the requester (client) and the provider (server). The provider chooses a challenge, say an item in a set with a property, the requester finds the relevant response in the set, which is sent back and checked by the provider. As the challenge is chosen on the spot by the provider, its difficulty can be adapted to its current load. The work on the requester side may be bounded if the challenge-response protocol has a known solution (chosen by the provider), or is known to exist within a bounded search space.
Proof of Work challenge response.svg
Solution–verification protocols do not assume such a link: as a result, the problem must be self-imposed before a solution is sought by the requester, and the provider must check both the problem choice and the found solution. Most such schemes are unbounded probabilistic iterative procedures such as Hashcash.
Proof of Work solution verification.svg
Known-solution protocols tend to have slightly lower variance than unbounded probabilistic protocols because the variance of a rectangular distribution is lower than the variance of a Poisson distribution (with the same mean).[further explanation needed] A generic technique for reducing variance is to use multiple independent sub-challenges, as the average of multiple samples will have a lower variance.
There are also fixed-cost functions such as the time-lock puzzle.
Moreover, the underlying functions used by these schemes may be:
*****U-bound where the computation runs at the speed of the processor, which greatly varies in time, as well as from high-end server to low-end portable devices.
Memory-bound where the computation speed is bound by main memory accesses (either latency or bandwidth), the performance of which is expected to be less sensitive to hardware evolution.
Network-bound if the client must perform few computations, but must collect some tokens from remote servers before querying the final service provider. In this sense, the work is not actually performed by the requester, but it incurs delays anyway because of the latency to get the required tokens.
Finally, some PoW systems offer shortcut computations that allow participants who know a secret, typically a private key, to generate cheap PoWs. The rationale is that mailing-list holders may generate stamps for every recipient without incurring a high cost. Whether such a feature is desirable depends on the usage scenario.
List of proof-of-work functions
Here is a list of known proof-of-work functions:
Integer square root modulo a large prime[dubious – discuss]
Weaken Fiat–Shamir signatures
Ong–Schnorr–Shamir signature broken by Pollard
Partial hash inversion This paper formalizes the idea of a proof of work and introduces "the dependent idea of a bread pudding protocol", a "re-usable proof-of-work" (RPoW) system.
Hash sequences
Puzzles
Diffie–Hellman–based puzzle
Moderate
Mbound
Hokkaido
Cuckoo Cycle
Merkle tree–based
Guided tour puzzle protocol
Reusable proof-of-work as e-money
Computer scientist Hal Finney built on the proof-of-work idea, yielding a system that exploited reusable proof of work (RPoW). The idea of making proofs of work reusable for some practical purpose had already been established in 1999. Finney's purpose for RPoW was as token money. Just as a gold coin's value is thought to be underpinned by the value of the raw gold needed to make it, the value of an RPoW token is guaranteed by the value of the real-world resources required to 'mint' a PoW token. In Finney's version of RPoW, the PoW token is a piece of Hashcash.
A website can demand a PoW token in exchange for service. Requiring a PoW token from users would inhibit frivolous or excessive use of the service, sparing the service's underlying resources, such as bandwidth to the Internet, computation, disk space, electricity, and administrative overhead.
Finney's RPoW system differed from a PoW system in permitting the random exchange of tokens without repeating the work required to generate them. After someone had "spent" a PoW token at a website, the website's operator could exchange that "spent" PoW token for a new, unspent RPoW token, which could then be spent at some third-party website similarly equipped to accept RPoW tokens. This would save the resources otherwise needed to 'mint' a PoW token. The anti-counterfeit property of the RPoW token was guaranteed by remote attestation. The RPoW server that exchanges a used PoW or RPoW token for a new one of equal value uses remote attestation to allow any interested party to verify what software is running on the RPoW server. Since the source code for Finney's RPoW software was published (under a BSD-like license), any sufficiently knowledgeable programmer could, by inspecting the code, verify that the software (and, by extension, the RPoW server) never issued a new token except in exchange for a spent token of equal value.
Until 2009, Finney's system was the only RPoW system to have been implemented; it never saw economically significant use.
RPoW is protected by the private keys stored in the trusted platform module (TPM) hardware and manufacturers holding TPM private keys. Stealing a TPM manufacturer's key or obtaining the key by examining the TPM chip itself would subvert that assurance.
Bitcoin-type proof of work
In 2009, the Bitcoin network went online. Bitcoin is a proof-of-work cryptocurrency that, like Finney's RPoW, is also based on the Hashcash PoW. But in Bitcoin, double-spend protection is provided by a decentralized P2P protocol for tracking transfers of coins, rather than the hardware trusted computing function used by RPoW. Bitcoin has better trustworthiness because it is protected by computation. Bitcoins are "mined" using the Hashcash proof-of-work function by individual miners and verified by the decentralized nodes in the P2P bitcoin network.
The difficulty is periodically adjusted to keep the block time around a target time.
Energy consumption
Since the creation of Bitcoin, proof-of-work has been the predominant design of peer-to-peer cryptocurrency. Many studies have been looking at the energy consumption of mining. The PoW mechanism requires a vast amount of computing resources, which consume a significant amount of electricity. Bitcoin's energy consumption can power an entire country.
However, there is no alternative design known that could replace proof-of-work but keeps its desirable attributes such as:[citation needed]
permissionless mining
fair distribution of coins
security against many known attacks
bootstrappability of new nodes in a hostile environment
graceful degradation and recovery even in the face of a successful attack or network failure
unforgeable and statically verifiable costliness
Also, there have been many attempts at making proof-of-work use non-specialist hardware. However, this is neither possible, because any specific proof-of-work function can be optimised with hardware, nor desirable, because specialist mining equipment improves security by committing miners to the specific network they are mining for.[citation needed]
ASICs and mining pools
Within the Bitcoin community there are groups working together in mining pools. Some miners use application-specific integrated circuits (ASICs) for PoW. This trend toward mining pools and specialized ASICs has made mining some cryptocurrencies economically infeasible for most players without access to the latest ASICs, nearby sources of inexpensive energy, or other special advantages.
Some PoWs claim to be ASIC-resistant, i.e. to limit the efficiency gain that an ASIC can have over commodity hardware, like a GPU, to be well under an order of magnitude. ASIC resistance has the advantage of keeping mining economically feasible on commodity hardware, but also contributes to the corresponding risk that an attacker can briefly rent access to a large amount of unspecialized commodity processing power to launch a 51% attack against a cryptocurrency.
bitcoin иконка bitcoin bat bitcoin generation bitcoin москва
bitcoin форки
алгоритмы bitcoin брокеры bitcoin
майнить bitcoin bitcoin рейтинг keyhunter bitcoin eos cryptocurrency app bitcoin ethereum доходность ethereum аналитика location bitcoin bitcoin weekly rate bitcoin bitcoin london основатель ethereum dat bitcoin bitcoin заработка equihash bitcoin bitcoin спекуляция bitcoin hunter биржа bitcoin калькулятор ethereum forecast bitcoin mineable cryptocurrency locals bitcoin bitcoin arbitrage blocks bitcoin bitcoin аналоги ethereum покупка
bitcoin information
ethereum продам оборудование bitcoin робот bitcoin bitcoin математика проверка bitcoin asics bitcoin bitcoin drip bitcoin start solo bitcoin ethereum investing Resourcesminecraft bitcoin tether ico ethereum заработать fee bitcoin hashrate bitcoin компания bitcoin перспективы bitcoin ethereum decred tether обменник monaco cryptocurrency bitcoin logo платформу ethereum bitcoin daemon bitcoin tm stake bitcoin bitcoin hardfork bitcoin wmx to bitcoin finex bitcoin
polkadot
bitcoin today amazon bitcoin gift bitcoin вики bitcoin byzantium ethereum
ethereum ротаторы captcha bitcoin dwarfpool monero
kraken bitcoin tether download продать monero bitcoin trader tether chvrches
ethereum создатель transactions bitcoin криптовалюта tether
se*****256k1 bitcoin bitcoin андроид red bitcoin autobot bitcoin bitcoin iq bitcoin фарм bitcoin free bitcoin переводчик криптовалют ethereum
bitcoin экспресс проекта ethereum bitcoin акции эпоха ethereum From 2011 to 2013, criminal traders made bitcoins famous by buying them in batches of millions of dollars so they could move money outside of the eyes of law enforcement and tax collectors. Subsequently, the value of bitcoins skyrocketed.bitcoin настройка
bitcoin eth
исходники bitcoin
webmoney bitcoin bitcoin adress bitfenix bitcoin ethereum alliance bitcoin currency bitcoin instagram bitcoin сайты bitcoin 100 frog bitcoin planet bitcoin 2016 bitcoin ютуб bitcoin
почему bitcoin chaindata ethereum ethereum бесплатно автомат bitcoin bitcoin генератор
bitcoin de monero windows 10000 bitcoin bonus bitcoin bitcoin заработка торрент bitcoin bitcoin online system bitcoin компания bitcoin cryptocurrency forum investment bitcoin claymore ethereum habrahabr bitcoin monero форум webmoney bitcoin coinmarketcap bitcoin проект ethereum Related topicsалгоритм ethereum If you are someone who’s working at a business that pays for your upskilling costs and wants to put you in the position of Blockchain developer, remember that you will be obliged to stay with that company for at least a specific period. After all, businesses aren’t in the habit of paying from employees’ training, only to make them more marketable elsewhere!With the popularity of Blockchain increasing every day and new jobs opening up in the area, it is important to know how you can prepare for Blockchain interviews to land your dream job. This article (and the attached video) will take you through some of the key questions and their answers that you should be prepared for. Let’s take a look.bitcoin exchanges bitcoin datadir fork bitcoin cardano cryptocurrency bitcoin boom bitcoin putin bip bitcoin bitcoin mmm minecraft bitcoin ccminer monero bitcoin explorer explorer ethereum bitcoin сбор ethereum stratum ethereum wallet checker bitcoin
bitcoin exchange bitrix bitcoin future bitcoin bitcoin suisse wired tether команды bitcoin rpc bitcoin теханализ bitcoin ethereum адрес bitcoin masternode bitcoin проверить
half bitcoin monero pro coinmarketcap bitcoin bitcoin автомат настройка ethereum Double entry achieves the remarkable trick of separating out mishaps from frauds. The problem with single entry (what people do when making lists of numbers and adding them up) is that the person can leave off a number, and no-one is the wiser . We can't show the person as either a bad bookkeeper or as a fraudulent bookkeeper. This achilles heel of primitive accounting meant that the bookkeeping limited the business to the size with which it could maintain honest bookkeepers.bitcoin mac bitcoin passphrase 1070 ethereum nem cryptocurrency сеть bitcoin
roll bitcoin
reward bitcoin cryptonator ethereum
зарабатывать ethereum bitcoin desk cryptocurrency prices coingecko bitcoin adc bitcoin mine ethereum bitcoin grafik tether io
node bitcoin token ethereum
bitcoin сколько bitcoin проблемы Bitcoin investors are in the company of top venture capital brass such asbitcoin 2000 bitcoin blockstream monero client bitcoin список
скачать bitcoin bitcoin дешевеет bitcoin collector bitcoin valet bitcoin config alliance bitcoin bitcoin фарм abc bitcoin nem cryptocurrency миксеры bitcoin
ethereum rub bitcoin dollar 2x bitcoin moneypolo bitcoin monero benchmark cfd bitcoin ethereum бутерин habrahabr bitcoin ethereum russia monero poloniex How or why is a mystery to the Davey Day traders of the world, and it matters not, because that’s just the way the world is perceived to work, and everyone acts accordingly. Rest assured, it will all end badly, but most individuals have come to believe investments in financial assets are just a better (and necessary) way to save, which dictates behavior. A 'diversified portfolio' has become so synonymous with savings that it is not perceived to bear risk, nor is it perceived to be a risk-taking activity. While that couldn’t be further from the truth, the choice is either to take risk via investments or to leave savings in a monetary medium that is sure to purchase less and less in the future. From an actual savings perspective, it is where damned if you do meets damned if you don’t. It is an unnerving game that everyone is either forced to play or sit it out and lose either way.ethereum алгоритм bitcoin hesaplama ethereum ubuntu ruble bitcoin bitcoin биткоин майн ethereum bitcoin rub
ethereum упал заработок bitcoin bitcoin make курс bitcoin In August 2020, MicroStrategy invested in Bitcoin.таблица bitcoin of hours. And because of easy access to the North Sea and large fleet, thereHow Is Monero Different from Bitcoin?captcha bitcoin bitcoin карта bitcoin iso ethereum serpent bitcoin btc bitcoin 10 ethereum stratum tether пополнение ethereum icon описание ethereum bitcoin стратегия ethereum хардфорк ethereum описание bitcoin сайт bitcoin conference bitcoin store bitcoin рубль explorer ethereum bitcoin государство капитализация ethereum bitcoin flapper инвестирование bitcoin ethereum io bitcoin обсуждение bitcoin зарабатывать bitcoin poker cms bitcoin tether coin компания bitcoin
bitcoin wallpaper bitcoin testnet torrent bitcoin bitcoin usb *****a bitcoin новости monero конвертер ethereum пожертвование bitcoin london bitcoin monero ico 6000 bitcoin bitcoin store unconfirmed bitcoin 6000 bitcoin store bitcoin avatrade bitcoin ethereum org форки ethereum store bitcoin bitcoin lite mixer bitcoin asic bitcoin bitcoin лохотрон nanopool ethereum iphone bitcoin wikileaks bitcoin платформе ethereum майнинга bitcoin bitcoin linux direct bitcoin ethereum stratum credit bitcoin bitcoin список cryptocurrency tech
bcc bitcoin bitcoin com bitcoin казахстан bitcoin today trade cryptocurrency bitcoin habr bitcoin получить etf bitcoin обвал bitcoin index bitcoin bitcoin бизнес ethereum заработок
bitcoin сколько bitcoin click bitcoin chart bitcoin bat bitcoin покупка bitcoin poker алгоритм ethereum bitcoin database ethereum faucet monero ann деньги bitcoin ethereum продать claymore monero Inflation is simply a rise of prices over time, which is generally the result of the devaluing of a currency. This is a function of supply and demand. Given the fact that the supply of bitcoins is fixed at a certain amount, unlike fiat money, the only way for inflation to get out of control is for demand to disappear. Temporary inflation is possible with a rapid adoption of Fractional Reserve Banking but will stabilize once a substantial number of the 21 million 'hard' bitcoins are stored as reserves by banks.keystore ethereum 100 bitcoin exchanges bitcoin tether usdt bitcoin видео rigname ethereum currency bitcoin
bitcoin разделился bitcoin api обмен ethereum ethereum клиент протокол bitcoin bitcoin приват24 bitcoin pro miner bitcoin magic bitcoin математика bitcoin bitcoin fee заработать bitcoin tether app cryptocurrency gold
ethereum покупка
monero free iso bitcoin ethereum web3 ethereum добыча dice bitcoin bitcoin расчет bitcoin json playstation bitcoin автосборщик bitcoin кран bitcoin x2 bitcoin ethereum добыча wallets cryptocurrency bitcoin demo криптовалюта tether bitcoin wiki kupit bitcoin bitcoin save bitcoin ebay инвестиции bitcoin майнер ethereum bitcoin банкомат bitcoin daily
purse bitcoin bitcoin genesis calculator ethereum ethereum eth
monero пул сложность bitcoin asics bitcoin ethereum dark bitcoin double bitcoin деньги monero cryptonote bitcoin io blocks bitcoin bitcoin сервера блокчейна ethereum валюта bitcoin калькулятор ethereum cryptocurrency calendar bitcoin развод цена ethereum bitcoin кранов bitcoin surf tether wifi
bitcoin транзакция ethereum биржи стоимость bitcoin bitcoin review bitcoin api заработок bitcoin bitcoin tube bitcoin вложить
bitcoin mercado bitcoin презентация 22 bitcoin mempool bitcoin bitcoin вход пример bitcoin bitcoin doubler bitcoin ukraine otc bitcoin elena bitcoin фермы bitcoin bitcoin 3 carding bitcoin apk tether se*****256k1 ethereum bitcoin коды bitcoin форум bye bitcoin
tether bootstrap project ethereum
miner monero bitcoin motherboard инвестиции bitcoin monero logo
бесплатно bitcoin market bitcoin kinolix bitcoin tether кошелек ethereum создатель bitcoin antminer bitcoin hd бесплатный bitcoin dance bitcoin ethereum pools ethereum проекты all cryptocurrency bitcoin auto spend bitcoin javascript bitcoin bitcoin мониторинг теханализ bitcoin mixer bitcoin
обменники bitcoin bitcoin gold bitcoin монеты bitcoin segwit2x
bitcoin гарант bitcoin вложить bitcoin рейтинг koshelek bitcoin
ads bitcoin tether кошелек Given:amazon bitcoin bitcoin rotator email bitcoin cryptocurrency перевод 1 monero bitcoin motherboard bitcoin paypal monero windows ютуб bitcoin 10000 bitcoin
bitcoin tor
production cryptocurrency bitcoin стратегия bitcoin easy electrum bitcoin bitmakler ethereum jaxx bitcoin часы bitcoin machine bitcoin
ethereum хешрейт
nicehash bitcoin bitcoin blue system bitcoin ethereum contracts bitcoin сколько пример bitcoin
raspberry bitcoin monero logo bitcoin обменники
get bitcoin
wallets cryptocurrency
payable ethereum кошелька bitcoin location bitcoin
пул bitcoin проверка bitcoin satoshi bitcoin ethereum pow bitcoin cnbc ethereum coin
видеокарты ethereum ethereum os tradingview bitcoin bitcoin hardfork circle bitcoin
tether комиссии ethereum raiden bitcoin otc microsoft bitcoin bitcoin income bitcoin etherium bitcoin roulette tether верификация collector bitcoin bitcoin shops carding bitcoin wiki bitcoin bitcoin weekly world bitcoin bitcoin аккаунт bitcoin prices bitcoin 123 кредит bitcoin cryptocurrency wallet stealer bitcoin
transaction bitcoin lealana bitcoin bitcoin prosto bitcoin india coinmarketcap bitcoin рейтинг bitcoin
vpn bitcoin bitcoin ann bitcoin деньги phoenix bitcoin tor bitcoin
Academic studiesBubbles are also how Bitcoin gains broader acceptance.HUMAN DISHONESTY: POOL ORGANIZERS TAKING UNFAIR SHARE SLICESbitcoin reserve bitcoin wallet bitcoin оборудование black bitcoin ethereum проекты bitcoin grant bitcoin neteller
generator bitcoin bitcoin транзакции bitcointalk ethereum играть bitcoin red bitcoin bitcoin solo bitcoin links bitcoin coinmarketcap boxbit bitcoin кран monero ethereum core kong bitcoin
валюта tether график ethereum bitcoin получение bitcoin часы bitcoin pools
ethereum аналитика bitcoin переводчик bitcoin рейтинг bitcoin tm 50000 bitcoin bitcoin софт автомат bitcoin alien bitcoin direct bitcoin криптовалюту bitcoin ethereum vk bitcoin bio пул monero bitcoin php играть bitcoin bitcoin путин bitcoin орг сколько bitcoin майнинг tether
bitcoin книги
roll bitcoin bitcoin ключи yota tether
microsoft bitcoin bitcoin yen bitcoin обмен asics bitcoin Before you buy cryptocurrency, know that it does not have the same protections as when you are using U.S. dollars. Also know that scammers are asking people to pay with cryptocurrency because they know that such payments are typically not reversible.