Quiz Entry - updated: 2026.07.14
What is the fundamental difference between symmetric and asymmetric cryptography?
Symmetric uses the same key to encrypt and decrypt; asymmetric uses different keys (a public/private pair).
| Symmetric | Asymmetric | |
|---|---|---|
| Keys | one shared secret key | a key pair: public + private |
| Encrypt / decrypt | same key for both | different keys for each |
| Also called | secret-key crypto | public-key crypto |
| Key challenge | distributing the shared secret safely | binding a public key to the right identity |
Why both exist: symmetric crypto (AES) is fast and great for bulk data, but needs a secure way to share the key. Asymmetric crypto solves key distribution but is slow. Real systems (like TLS) combine them: asymmetric to exchange a key, symmetric for the actual data.
Tip: Symmetric = one key both ways. Asymmetric = two keys, mathematically linked, that undo each other.