Glossary · Crypto basics
What is Private key?
A long random number that proves ownership of a crypto address. Whoever knows the private key can spend the funds — there is no recovery, no customer support, no override.
Last updated April 30, 2026
How it works
Every address on a blockchain has a matching private key. The private key is just a 256-bit number — about 78 digits long — generated randomly when the wallet is created. The address (which you share publicly) is derived from the key through one-way cryptography. You can compute the address from the key, but not the other way around.
To spend from an address, the wallet uses the private key to sign the transaction. Validators check that the signature was produced by the key that controls the address. If it was, the transaction is valid; if not, it's rejected.
Example
A raw private key looks like 0x4c0883a69102937d6231471b5dbb6204fe5129617082792ae468d01a3f362318 — 64 hexadecimal characters. Most users never see it directly. Instead, wallets show a seed phrase (12 or 24 English words) that mathematically generates the private key. Same security, easier to back up by hand.
Why it matters
The whole self-custody model rests on key security. Common failure modes:
- Phishing — a fake site asks you to "verify your wallet" by typing in the seed phrase. Anyone who knows the seed phrase has the key.
- Cloud screenshots — a photo of your seed phrase ends up in iCloud or Google Photos backup. Now Apple or Google has effective access if any of their accounts is compromised.
- Crypto-clipboard malware — silently swaps a copied destination address for the attacker's. Always double-check the first and last 4 characters of any address you paste.
- Lost backup — the laptop dies and the seed phrase was only stored on the laptop. Funds are unrecoverable.
The "not your keys, not your coins" rule applies in both directions: total control comes with total responsibility. Hardware wallets exist specifically because keeping the key on a laptop or phone — both connected to the internet — is the highest-risk option.