Worked example 1
A message SECURE is to be encrypted using a symmetric Caesar cipher with a key of +3. Show the encryption process and then decrypt the resulting ciphertext to retrieve the original message.
Show solution outline
Encryption Process: Each letter in the plaintext is shifted 3 places forward in the alphabet.
- S + 3 -> V
- E + 3 -> H
- C + 3 -> F
- U + 3 -> X
- R + 3 -> U
- E + 3 -> H
Plaintext: SECURE Ciphertext: VHFXUH
Decryption Process: To decrypt, we apply the reverse operation, shifting each letter 3 places backward.
- V - 3 -> S
- H - 3 -> E
- F - 3 -> C
- X - 3 -> U
- U - 3 -> R
- H - 3 -> E
Original Plaintext Recovered: SECURE