Digital Asset Self-Custody HubGet the App
← Back to Self-Custody Hub

What Is a Private Key?

You set up a wallet and, somewhere in the process, a string of letters and numbers gets generated that you're told never to share with anyone. That string is a private key — a piece of mathematical data that acts as proof of authorization on a decentralized network. Whoever can produce a valid signature from that key can move the asset it controls. Nothing else is checked.

What the key is actually doing

A private key isn't a lookup value stored in some ledger, and it isn't linked to your name or identity anywhere. It's a large random number, generated on your device, mathematically paired with a public key that the network can see (typically encoded into a shorter address — see What Is a Public Key?). When you send a transaction, your wallet uses the private key to produce a signature proving you have the authority to move funds from that address — without ever exposing the key itself on the network. The math is what decentralized networks rely on instead of a company checking a username and password.

Why control of the key is control of the asset

On a bank account, the bank is the final authority — it can freeze the account, reverse a charge, or reset a forgotten password because it maintains the actual record. A decentralized network has no equivalent authority. The record is distributed across many independent computers, and the only thing any of them ever check is whether a transaction carries a valid signature. There's no customer support line to call and no identity verification step that overrides that signature. That's the entire reason the phrase “whoever holds the key holds the asset” is accurate rather than dramatic.

Why it's not a password

A password is something a company stores, checks against, and can reset when you forget it. A private key is generated once and exists only where you or your wallet software keep it. If it's exposed to someone else, they have the exact same authority you do — there is no way to revoke it and issue a new one for the same address. If it's lost with no backup, there is no reset link, because no institution ever held a copy in the first place. That difference is the whole basis of self-custody.

For how people back up a private key without writing it down as raw code, see What Is a Seed Phrase?, and for the practices that keep a key from being exposed in the first place, see Key Security.