Prabh Nair 1/1
Cryptography—
How It Works
(Plain-English
Guide)
Process
Prabh Nair
The Big Idea
2/2
Cryptography is the art of locking
information so only the right people
can unlock it.
Think of writing a note, putting it in a
locked box, and handing the key only to
your friend.
Prabh Nair
Two Main Locks 3/3
Lock Type How It Works Real-Life Analogy
Same secret key locks
Symmetric One padlock, both of you
& unlocks. Fast,
(One Key) share the same key.
simple.
Public key locks,
Anyone can drop a letter
private key unlocks.
Asymmetric into your locked mailbox,
You publish the public
(Two Keys) but only you have the
key; keep the private
key to open it.
key hidden.
Modern systems often combine both: use
asymmetric to share a quick symmetric
key, then switch to the faster symmetric
lock for the bulk data.
Prabh Nair
Turning Words Into 4/4
Code
A cipher is the rule set that scrambles
plain text into unreadable text (cipher-
text).
Popular ciphers today: AES-256
(symmetric) and RSA or ECC
(asymmetric).
Prabh Nair
Keeping It Safe 5/5
Key Generation – Create strong random
keys (like unpredictable dice rolls).
→
Encryption – Apply the cipher + key to
your data: plain cipher-text.
Transmission / Storage – Send or store
the cipher-text; eavesdroppers see only
noise.
Decryption – Receiver applies the
correct key + cipher to convert cipher-
text back to plain text.
If an attacker doesn’t have the key, today’s
algorithms make cracking practically
impossible within human lifetimes.
Prabh Nair
Everyday Uses 6/6
HTTPS websites – Your browser and the
server encrypt everything you read or
type.
WhatsApp & Signal – Messages are end-
to-end encrypted; only you and your
friend hold the keys.
ATM cards & UPI – PINs and transactions
travel locked, so skimmers can’t read
them.
Document signing – Your private key signs
a file; anyone with your public key can
verify it’s really yours.
Prabh Nair
Takeaway 7/7
Cryptography is your digital lockbox—
mixing smart maths with secret keys so
your chats, payments and files stay
private, authentic and tamper-proof.
Prabh Nair