What Is Encryption?
Everyone, let's start by answering a simple question: what is encryption? In the most basic terms, encryption is a way of turning ordinary data into a secret code so that only the intended person can read it. Here you can see the key ideas: we take information, scramble it using a method—like a secret key—and the result looks like nonsense to anyone who doesn't have the key. Let's work through a quick example using a Caesar cipher. The formula C = (P + 3) mod 26 tells us how to shift each letter three places forward in the alphabet, wrapping around after Z. For instance, the letter 'A' (which we treat as 0) becomes 'D', because (0 + 3) mod 26 = 3. Likewise, 'Z' (25) becomes 'C', because (25 + 3) mod 26 = 2. See this real‑world Kenyan example: M‑Pay encrypts transaction data so that only the sender and the receiver can read the details. Even if someone intercepts the message, without the encryption key it looks like gibberish, keeping our money safe. Any questions so far? If everything is clear, we'll move on to how encryption protects data both while it's being sent and when it's stored.