Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 575 Bytes

File metadata and controls

17 lines (11 loc) · 575 Bytes

CipherApp

Variation of Caesar Cipher.

How to use the Cipher App:

  1. Run the main function in Main.java. Make sure a new window called 'Cipher App' opens.

  2. Enter a positive integer as a shift. The shift shifts the uppercase and lowercase letters in the alphabet. It increments by 1 for every symbol in the input message. Example: Encrypt ABC with shift 1 -> BDF, Decrypt ABC with shift 1 -> ZZZ

  3. Enter the message into the input text area that you want to encrypt or decrypt.

  4. Press the Encrypt/Decrypt button.

  5. Obtain the results in the output text area.