Day 240Part 7: How Bitcoin Works

Progress Recap: The Network Layers

Ten days into Part 7. Here’s the cryptographic foundation that’s been built.

The private key is an enormous random number. It owns Bitcoin mathematically. Lose it and access is gone permanently. Share it and the Bitcoin is gone immediately.

The public key is derived from the private key through one-way mathematics. It proves the private key exists without revealing it. Impossible to reverse-engineer.

The Bitcoin address is derived from the public key — a shorter, shareable destination for incoming funds. Meant to be given out freely. Ideally used once per transaction for privacy.

Cryptography is the mathematical foundation of all of this — specifically elliptic curve cryptography, which exploits a one-way operation that’s trivially easy to perform and practically impossible to reverse. The security is mathematical, not institutional.

Hashing produces a fixed-length fingerprint of any input. Always unique to that input. Always one-way. Change one character of the input and the output changes completely. This property makes the blockchain tamper-proof.

The blockchain is a chain of blocks, each containing transactions, a timestamp, and the hash of the previous block. Changing any historical block breaks the chain from that point forward — and repairing it requires redoing more computational work than the entire network has performed.

Digital signatures prove ownership without revealing private keys. Every transaction is mathematically signed. Every signature is verified independently by thousands of nodes. No institution required.

The next ten days go deeper into the engine room — mining, proof of work, nodes, and how a transaction actually travels from your wallet to permanent settlement on the blockchain.

For those ready to go even deeper — the Bitcoin whitepaper in a format that’s actually enjoyable to read:

Bitcoin Whitepaper: The Version for People Who Don’t Speak Nerd — amzn.to/478Wg7O

Tomorrow: what is mining — the real explanation, not the cartoon version.

— The Daily Bit

Part of The Daily Bit — 365 days to understanding Bitcoin.