Posts

Showing posts from October, 2019

Decrypting

-- CAESAR CIPHER -- A caesar cipher is very simple to understand. It just shifts the letters by a number. Shifting by 1: the letter A --> turns into B. the letter E --> turns into F. the letter T --> turns into U. And, the letter Z --> turns into A! Shifting by 2: the letter A --> turns into C. the letter W --> turns into Y. the letter Z --> turns into B.