Encryption
Scrambling data so only someone with the right key can read it.
Two main types: symmetric (same key to lock and unlock — fast, e.g. AES) and asymmetric (public key locks, private key unlocks — good for messages between strangers, e.g. RSA).
Different from hashing: encryption is reversible if you have the key; hashing is one-way.