Updated test message

This commit is contained in:
2021-07-25 16:59:32 -04:00
parent 4f8b440c59
commit 23c58a6fdc
2 changed files with 10 additions and 9 deletions

View File

@@ -7,9 +7,9 @@ package mattrixwv.CipherStreamJava;
public class Caesar{
public static final String version = "1.0"; //The current version number for the library
private String inputString; //The string that needs encoded/decoded
private String outputString; //The encoded/decoded string
public static final String version = "1.0"; //The current version number for the library
private int shift; //The amount that you need to shift each letter
//Sets shift and makes sure it is within the propper bounds
private void setShift(int shiftAmount){