Asymmetric Encryption
ELI5 — The Vibe Check
Asymmetric encryption uses two different keys — one to lock (public key), one to unlock (private key). It's like a padlock: anyone can close it, but only you have the key to open it. This is how HTTPS and SSH work. Slower than symmetric, but way more practical for the internet.
Real Talk
Asymmetric encryption uses a mathematically linked key pair: a public key for encryption and a private key for decryption. The security relies on the computational difficulty of reversing the mathematical relationship. Used in TLS handshakes, SSH, and digital signatures. Common algorithms: RSA, ECC.
When You'll Hear This
"TLS uses asymmetric encryption during the handshake, then switches to symmetric for speed." / "SSH public key authentication is asymmetric encryption in action."
Related Terms
Encryption
Encryption is scrambling your message into gibberish so only someone with the secret decoder ring can read it.
Private Key
A private key is the secret key that only YOU keep. It can decrypt messages encrypted with your public key, or sign messages to prove they came from you.
Public Key
A public key is like your open mailbox — anyone can drop a message in it (encrypt data with it), but only you have the key to open the box and read it (you...
Symmetric Encryption
Symmetric encryption uses the same key to lock and unlock data. Like a house key — whoever has a copy can both lock and unlock the door.
TLS (TLS)
TLS (Transport Layer Security) is the updated, actually-secure version of SSL. It's the technology that puts the padlock in your browser's address bar.