CEASER'S CIPHER
MINI
PROJECT
Darshan C
Satvik Sanisetty
Yukta
About
this project
Caesar cipher is a basic letters substitution algorithm. It takes as
input a message, and apply to every letter a particular shift. This shift
used to be 3 (Caesar shift), according to history, when it was used by
Caesar to encrypt war messages (so for example a would become d,
b wille be e, and so on and so forth). Of course you can choose any
shift you want.
This way, the message can only be decrypted by the one who knows
the shift number which is the number of times the letters is
increased or shifted.
PURPOSE
As mentioned earlier, this is a great
way to encrypt messages that needs
to be kept in secrecy. The only
downside to this method is that
tools such as The Decrypter was
developed shortly after the
introduction of this method.
Program
CODE
The code to this program, written in C is
surprisingly simple and short as it deals
with only the index of the letters,
increases the number by the shift
number given by the user and prints the
coninciding letter thus forming a
meaningless sentence to the naked eye.
THANK
YOU