Caesar Shift

The Caesar shift is a symmetric substitution cypher that slides every letter by $3$ places alphabetically in order to obtain the cyphertext and slides every letter back by $3$ places in order to obtain the plaintext. In other words, for every letter $l_{p}$, in order to obtain the cyphered letter $l_{c}$, you do:

\begin{eqnarray*}
l_{c} &=& (l_{p}+3)\mod{26}
\end{eqnarray*}

In order to obtain the plaintext letter $l_{p}$, the reverse operation can be performed:

\begin{eqnarray*}
l_{p} &=& (l_{c}-3)\mod{26}
\end{eqnarray*}


fuss/cryptography/cyphers/caesar.txt ยท Last modified: 2022/04/19 08:28 by 127.0.0.1

Access website using Tor Access website using i2p Wizardry and Steamworks PGP Key


For the contact, copyright, license, warranty and privacy terms for the usage of this website please see the contact, license, privacy, copyright.