@@ -11,14 +11,14 @@ If anyone wishes to decipher these, and get at their meaning, he must substitute
1111Ciphers are very straight-forward algorithms that allow us to render text less readable while still allowing easy deciphering.
1212They are vulnerable to many forms of cryptanalysis, but Caesar was lucky that his enemies were not cryptanalysts.
1313
14- The Caesar Cipher was used for some messages from Julius Caesar that were sent afield.
14+ The Caesar cipher was used for some messages from Julius Caesar that were sent afield.
1515Now Caesar knew that the cipher wasn't very good, but he had one ally in that respect: almost nobody could read well.
1616So even being a couple letters off was sufficient so that people couldn't recognize the few words that they did know.
1717
18- Your task is to create a simple shift cipher like the Caesar Cipher .
19- This image is a great example of the Caesar Cipher :
18+ Your task is to create a simple shift cipher like the Caesar cipher .
19+ This image is a great example of the Caesar cipher :
2020
21- ![ Caesar Cipher ] [ img-caesar-cipher ]
21+ ![ Caesar cipher ] [ img-caesar-cipher ]
2222
2323For example:
2424
@@ -44,7 +44,7 @@ would return the obscured "ldpdsdqgdehdu"
4444In the example above, we've set a = 0 for the key value.
4545So when the plaintext is added to the key, we end up with the same message coming out.
4646So "aaaa" is not an ideal key.
47- But if we set the key to "dddd", we would get the same thing as the Caesar Cipher .
47+ But if we set the key to "dddd", we would get the same thing as the Caesar cipher .
4848
4949## Step 3
5050
0 commit comments