CAESAR CIPHER ENCODER/DECODER ==========================================A Caesar Cipher is a secret code. It works like this: A KEY is chosen. The key is a number between 1-25 inclusive. You then "shift" letters of the alphabet over by the key. For example, if you had a key of 1, A would become B, B would become C, and so on through the entire alphabet until Z becomes A. A key of 2 would make A become C, B become D, and so on. If you want, you can change the alphabet so that it can include numbers and symbols too, for example. An alphabet of "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890" would make the text "Hello123" with a key of 1 would make the text "Ifmmp234", because the letters are also shifting. If you enter a character that is not included in the alphabet you have set, it will simply be ignored. For example, if your alphabet is "ABCDEFGHIJKLMNOPQRSTUVWXYZ" And you entered "Hello, Hello, Hello!" with a key of 1, it would come out as "Ifmmp, Ifmmp, Ifmmp!"(note how the commas and exclamation marks were ignored as they were not in the alphabet) After you encode your text, you can follow the instructions in the project and copy your text. You can then go to the 'Decode' tab and paste your text in the 'Input' variable there. Make sure you use the same alphabet and key as your encoded text, or else it will not work.
All scripts by me. EXTRA NOTES: Entering a key higher than the length of the alphabet will simply make it "wrap around". For example, if the alphabet was 26 letters long, a key of 29 would become a key of 3. If pressing [space] to hide the list called "Caesar Cipher" doesn't work, try clicking somewhere outside the project (i.e., click somewhere that is not on the stage/project window). Press [space] again and it should work.