Market Cap: 24h Vol: BTC: BTC Dom:
Gold: S&P 500: EUR/USD: Oil (BRENT):

Cryptography

Cryptography did not begin with blockchain: it is a discipline that predates computers, running from wartime cipher machines to the encrypted messages sent by a banking app today. What blockchain systems borrowed from it is the ability to prove ownership, integrity, and origin of data without a central authority checking every step.

Three techniques do most of the work:

  • Symmetric encryption, where the same key locks and unlocks data. It is fast, but the key must somehow be shared secretly beforehand.
  • Asymmetric, or public-key, cryptography, where a private key signs or decrypts and a matching public key verifies or encrypts, so nothing secret ever has to be transmitted.
  • Hashing, which compresses any input into a fixed-length fingerprint that changes completely if even a single bit of the input changes.

Bitcoin and Ethereum lean on the asymmetric side through the Elliptic Curve Digital Signature Algorithm: a wallet's private key generates a matching public key on the secp256k1 curve, and every outgoing transaction carries a digital signature that proves the sender controls the funds without ever exposing the private key itself. Hashing does the rest, linking each block to the one before it so that altering old data would mean redoing every subsequent block.

The risk cryptographers now watch most closely is quantum computing. No existing machine can break the elliptic curves securing Bitcoin or Ethereum, but the theoretical gap keeps narrowing, which is why the Ethereum Foundation formed a dedicated post-quantum research team in 2026 and Bitcoin developers have proposed quantum-resistant address formats as a precaution, even though neither network faces a practical threat yet.

Related Articles